Article Ideas Generator API - Dart/Flutter Client

Article Ideas is a simple tool for generating article ideas. It returns a list of article ideas.

pub package License: MIT

This is the Dart/Flutter client for the Article Ideas Generator API.

Installation

Add this to your pubspec.yaml:

dependencies:
  apiverve_articleideas: ^1.1.14

Then run:

dart pub get
# or for Flutter
flutter pub get

Usage

import 'package:apiverve_articleideas/apiverve_articleideas.dart';

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

  try {
    final response = await client.execute({
      'topic': 'software and technology'
    });

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

Response

{
  "status": "ok",
  "error": null,
  "data": {
    "topic": "software and technology",
    "topicIdeas": 3,
    "topics": [
      "The Future of AI: How Artificial Intelligence is Revolutionizing Software Development",
      "Breaking Barriers: Exploring the Latest Innovations in Cybersecurity Technology",
      "Beyond the Metaverse: Emerging Trends and Technologies Shaping the Digital Landscape"
    ]
  }
}

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_articleideas
Article Ideas Generator API client for Dart/Flutter