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

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

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

0
likes
140
points
39
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

http, http_parser

More

Packages that depend on apiverve_articleideas