TheaimartAIx DOCS
Home Get API key

Models

GET /v1/models

Lists the live callable model catalog. The endpoint is public and takes no body.

curl https://api.aix.theaimart.co/v1/models

Response — list

{
  "object": "list",
  "data": [
    {
      "id": "anthropic/claude-sonnet-4-6",
      "object": "model",
      "created": 1784304000,
      "owned_by": "theaimart",
      "type": "chat"
    }
  ]
}

The additive type field is chat, embeddings, image, tts or audio, which lets model pickers filter a mixed catalog. Standard OpenAI clients ignore it safely. Live prices are published on the models page and dashboard.

Pricing catalog

For a public catalog that includes AIx pricing and billing units, use the platform endpoint:

curl https://api.aix.theaimart.co/api/v1/models
{
  "count": 80,
  "models": [{
    "model_id": "",
    "model": "deepseek-ai/DeepSeek-V3.2",
    "type": "chat",
    "price": 0.38,
    "unit": "per_million_tokens"
  }]
}

Use /v1/models for drop-in SDK discovery and /api/v1/models for pricing-aware catalog interfaces. Both are public and update from the same active model catalog.

Tip

Fetch this endpoint instead of hardcoding ids — availability can change without an API version bump.

Last updated July 18, 2026

Was this page helpful?