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

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

Libraries

apiverve_acronymgenerator
Acronym Generator API client for Dart/Flutter