data_objectOpen Data

LLM Pricing Open Data API

Use the public JSON endpoint to consume the current model pricing dataset, tiered prices and extra billing items collected by ProxyIntel.

open_in_newOpen JSONBack to pricing table
Endpointhttps://jindage.com/api/model-prices.json

Filter parameters

qKeyword search across model_id, display_name, family, provider_name and source_provider_key, for example q=claude
source_provider_keyFilter by original model maker, such as openai, anthropic or deepseek; use | for multiple values, for example openai|anthropic
source_regionFilter by source region. domestic means domestic sources; international means international sources
model_typeFilter by model type. Supported values: text, audio, multimodal, image-understanding, image-generation, video-understanding, video-generation and other
provider_keyFilter by service provider key, such as openai, anthropic, deepseek or models_dev
currencyFilter by display currency, commonly USD or CNY

Field reference

meta.nameDataset name for the ProxyIntel model pricing export
meta.versionResponse schema version for compatible field changes
meta.updated_atJSON generation time in ISO 8601 format
meta.countNumber of records in the data array
meta.licenseUsage label for public reference data
data[].provider_keyService or selling provider key
data[].provider_nameDisplay name of the service provider
data[].source_provider_keyOriginal model maker key, such as openai, anthropic or deepseek
data[].source_provider_nameNormalized display name of the original model maker
data[].model_idModel identifier used in API calls
data[].display_nameHuman-readable model name
data[].familyModel family or series, such as claude, gpt or qwen
data[].model_wiki_slugInternal model wiki slug for linking to the model detail page
data[].supports_tool_callingBoolean flag for tool-calling support
data[].supports_reasoningBoolean flag for reasoning support
data[].supports_structured_outputBoolean flag for structured-output support
data[].supports_temperatureBoolean flag for temperature parameter support
data[].input_modalitiesSupported input modalities, such as text, image or audio
data[].output_modalitiesSupported output modalities, such as text, image or audio
data[].pricesStandard token price object normalized per one million tokens
data[].prices.input_per_million_tokensInput price per 1M tokens, using display_currency
data[].prices.output_per_million_tokensOutput price per 1M tokens, using display_currency
data[].prices.cache_read_per_million_tokensCache read price per 1M tokens, nullable
data[].prices.cache_write_per_million_tokensCache write price per 1M tokens, nullable
data[].original_currencyOriginal source currency
data[].display_currencyDisplay currency used by the prices object
data[].context_limitContext window size in tokens, nullable
data[].input_limitMaximum input tokens, nullable
data[].output_limitMaximum output tokens, nullable
data[].tiersTiered pricing records for context or range-based prices
data[].tiers[].range_startTier start token count
data[].tiers[].range_endTier end token count; null means no upper bound
data[].price_itemsAdditional billing items such as search, image or audio charges
data[].price_items[].billing_unitNormalized billing unit, such as per_call or per_image
data[].source_regionData source region. domestic means domestic sources; international means international sources
data[].source_urlSource page or API URL
data[].release_dateModel release date, nullable
data[].collected_atCollection time in ISO 8601 format

Sample response

{
  "meta": {
    "name": "ProxyIntel Model Prices",
    "version": "1.0",
    "count": 1,
    "filters": {
      "source_provider_key": "openai",
      "source_region": "international"
    }
  },
  "data": [
    {
      "provider_key": "openai",
      "source_provider_key": "openai",
      "model_id": "gpt-5.5",
      "display_name": "GPT-5.5",
      "source_region": "international",
      "prices": {
        "input_per_million_tokens": "1.250000",
        "output_per_million_tokens": "10.000000"
      },
      "tiers": [],
      "price_items": []
    }
  ]
}