Skip to main content
The Deepshi API gives you one endpoint for many text models: Deepshi’s own models plus leading third-party models. You choose a model with the model field on each request.

Referencing a model

Pass the model’s id in the model field. The id is all you need.
{ "model": "deepshi-3.0", "messages": [ ... ] }

Listing available models

Call GET /v1/models to list the models available to you:
curl https://api.deepshi.ai/v1/models \
  -H "Authorization: Bearer $DEEPSHI_API_KEY"
Each entry’s id is the value you pass as model:
{
  "object": "list",
  "data": [
    { "id": "deepshi-3.0", "object": "model", "owned_by": "deepshi" },
    { "id": "claude-opus-4.8", "object": "model", "owned_by": "deepshi" }
  ]
}

Browse models

Text models

The full catalog with context windows and capabilities.