apiverve_acronymgenerator 1.2.0 copy "apiverve_acronymgenerator: ^1.2.0" to clipboard
apiverve_acronymgenerator: ^1.2.0 copied to clipboard

Acronym Generator creates acronyms from phrases by extracting the first letter of each word. Input 'Application Programming Interface' and get 'API'.

Acronym Generator API - Dart/Flutter Client #

Acronym Generator creates acronyms from phrases by extracting the first letter of each word. Input 'Application Programming Interface' and get 'API'.

pub package License: MIT

This is the Dart/Flutter client for the Acronym Generator API.

Installation #

Add this to your pubspec.yaml:

dependencies:
  apiverve_acronymgenerator: ^1.2.0

Then run:

dart pub get
# or for Flutter
flutter pub get

Usage #

import 'package:apiverve_acronymgenerator/apiverve_acronymgenerator.dart';

void main() async {
  final client = AcronymgeneratorClient('YOUR_API_KEY');

  try {
    final response = await client.execute({
      'text': 'Application Programming Interface'
    });

    print('Status: ${response.status}');
    print('Data: ${response.data}');
  } catch (e) {
    print('Error: $e');
  }
}

Response #

{
  "status": "ok",
  "error": null,
  "data": {
    "text": "Application Programming Interface",
    "acronyms": [
      "API",
      "APP IN",
      "Accessing Program's Interface"
    ]
  }
}

API Reference #

Authentication #

All requests require an API key. Get yours at apiverve.com.

License #

MIT License - see LICENSE for details.


Built with Dart for APIVerve

0
likes
140
points
65
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Acronym Generator creates acronyms from phrases by extracting the first letter of each word. Input 'Application Programming Interface' and get 'API'.

Homepage
Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

http, http_parser

More

Packages that depend on apiverve_acronymgenerator