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

Acronym Generator is an AI-powered tool for creating creative acronyms from text. It returns 3 unique acronym suggestions for any given phrase.

Acronym Generator API - Dart/Flutter Client #

Acronym Generator is an AI-powered tool for creating creative acronyms from text. It returns 3 unique acronym suggestions for any given phrase.

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.1.14

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",
      "Application's Programming Interface",
      "Awesome Programming 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
38
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Acronym Generator is an AI-powered tool for creating creative acronyms from text. It returns 3 unique acronym suggestions for any given phrase.

Homepage
Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

http, http_parser

More

Packages that depend on apiverve_acronymgenerator