Skip to main content
GET
/
subscriptions
/
plans
curl -X GET https://api.llmgenerator.com/api/v1/subscriptions/plans
{
  "plans": [
    {
      "id": "starter",
      "name": "Starter",
      "monthlyCredits": 500,
      "price": 4.99,
      "features": [
        "500 credits/month",
        "Email support",
        "Basic analytics"
      ]
    },
    {
      "id": "professional",
      "name": "Professional",
      "monthlyCredits": 3000,
      "price": 12.99,
      "features": [
        "3,000 credits/month",
        "Priority support",
        "Advanced analytics",
        "API access"
      ]
    },
    {
      "id": "business",
      "name": "Business",
      "monthlyCredits": 10000,
      "price": 29.99,
      "features": [
        "10,000 credits/month",
        "Dedicated support",
        "Custom integrations",
        "Team management"
      ]
    },
    {
      "id": "agency",
      "name": "Agency",
      "monthlyCredits": 30000,
      "price": 69.99,
      "features": [
        "30,000 credits/month",
        "White-label options",
        "Priority processing",
        "Custom solutions"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.llmgenerator.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Returns all available subscription plans. This endpoint is public and doesn’t require authentication, making it ideal for displaying pricing information in your application.

Available Plans

PlanMonthly CreditsPrice (USD)
Starter500$4.99/month
Professional3,000$12.99/month
Business10,000$29.99/month
Agency30,000$69.99/month
curl -X GET https://api.llmgenerator.com/api/v1/subscriptions/plans
{
  "plans": [
    {
      "id": "starter",
      "name": "Starter",
      "monthlyCredits": 500,
      "price": 4.99,
      "features": [
        "500 credits/month",
        "Email support",
        "Basic analytics"
      ]
    },
    {
      "id": "professional",
      "name": "Professional",
      "monthlyCredits": 3000,
      "price": 12.99,
      "features": [
        "3,000 credits/month",
        "Priority support",
        "Advanced analytics",
        "API access"
      ]
    },
    {
      "id": "business",
      "name": "Business",
      "monthlyCredits": 10000,
      "price": 29.99,
      "features": [
        "10,000 credits/month",
        "Dedicated support",
        "Custom integrations",
        "Team management"
      ]
    },
    {
      "id": "agency",
      "name": "Agency",
      "monthlyCredits": 30000,
      "price": 69.99,
      "features": [
        "30,000 credits/month",
        "White-label options",
        "Priority processing",
        "Custom solutions"
      ]
    }
  ]
}

Response Fields

plans
array
Array of subscription plan objects.

Use Cases

  • Pricing pages: Display available plans to potential customers
  • Plan comparison: Help users choose the right plan
  • Upgrade prompts: Show available upgrades to current subscribers