Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.lemondata.cc/llms.txt

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

Overview

Use this endpoint to list the current public pricing surface for active models. For one model’s full pricing detail, including structured pricing and provenance, prefer Get Model Pricing.

Query Parameters

provider
string
Optional provider filter such as openai, anthropic, or google.
tag
string
Optional model tag filter such as chat, image, video, embedding, or translation.

Response

object
string
Always pricing.
updated_at
string
ISO timestamp for the newest pricing entry included in the response.
currency
string
Always USD.
data
array
Array of pricing entries. Each item includes model, provider, is_lock_price, capabilities, aliases, and the public scalar or structured pricing summary fields returned by the interactive schema above.
curl "https://api.lemondata.cc/v1/pricing?provider=openai&tag=chat" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "object": "pricing",
  "updated_at": "2026-04-20T00:00:00.000Z",
  "currency": "USD",
  "data": [
    {
      "model": "gpt-4o",
      "provider": "openai",
      "is_lock_price": false,
      "input_per_1m_tokens": "2.50",
      "output_per_1m_tokens": "10.00",
      "capabilities": ["chat"],
      "aliases": ["gpt-4o-latest"]
    }
  ]
}
Use the interactive OpenAPI panel above for the exact response schema. Public pricing entries may also expose lock_price_per_request, has_complex_pricing, supported_operations, pricing_summary, and pricing_provenance.