Skip to main content
Explore available OpenAI and Anthropic models

Models API Standard

Our Models API makes the most important information about all LLMs freely available as soon as we confirm it.

API Response Schema

The Models API returns a standardized JSON response format that provides comprehensive metadata for each available model. This schema is cached at the edge and designed for reliable integration for production applications.

Root Response Object

{  "data": [    /* Array of Model objects */  ]}

Model Object Schema

FieldTypeDescription
idstringUnique model identifier used in API requests (e.g., "openai/gpt-4o", "anthropic/claude-3-sonnet")
namestringHuman-readable display name
providerstringProvider of the model: "openai" or "anthropic"
descriptionstringSummary of model capabilities
context_lengthnumberMaximum supported context window in tokens
pricingPricingCost structure (see below)
capabilitiesstring[]Supported input/output types and parameters

Pricing Object

{
  "prompt": string,      // Cost per input token
  "completion": string,  // Cost per output token
  "request": string      // Fixed cost per request (if any)
}
Pricing varies between OpenAI and Anthropic. Always confirm the latest rates with the pricing object in the /models response.

Supported Parameters

Models support OpenAI- compatible parameters where applicable:
  • tools
  • tool_choice
  • max_tokens
  • temperature
  • top_p
  • stop
  • frequency_penalty
  • presence_penalty
  • seed

Available Models Endpoint

curl https://api.anannas.ai/v1/models \
  -H "Authorization: Bearer $ANANNAS_API_KEY"
This returns all supported models and their capabilities.
Was this page helpful?