API

Models

The catalog is public. Agents can discover models and prices before they spend anything.

List models

curl
curl https://arcrouter.co/models
response
{
  "data": [
    {
      "id": "gpt-oss-120b",
      "provider": "arcrouter",
      "type": "chat",
      "modality": "text",
      "context_length": 131072,
      "min_output_tokens": 512,
      "input_usdc_per_mtok": 0.38,
      "output_usdc_per_mtok": 1.5,
      "released_at": "2025-08-05"
    }
  ]
}

GET /v1/models returns the same entries in the OpenAI list shape, so SDK model pickers work.

Fields

Embeddings

curl
curl https://arcrouter.co/v1/embeddings \
  -H "Authorization: Bearer $ARCROUTER_KEY" \
  -H "content-type: application/json" \
  -d '{"model":"text-embedding-3-small","input":["first text","second text"]}' 

Browse the live list with prices on the Models page.