API Reference
Models
List and retrieve the models available on the Satryx API.
Endpoints
http
GET https://api.satryx.ai/v1/models
GET https://api.satryx.ai/v1/models/{model_id}List all models
bash
curl https://api.satryx.ai/v1/models \
-H "Authorization: Bearer $SATRYX_API_KEY"json
{
"object": "list",
"data": [
{
"id": "llama-3.1-70b",
"object": "model",
"created": 1714000000,
"owned_by": "satryx",
"capabilities": ["chat"]
},
{
"id": "qwen3.6-35b-a3b",
"object": "model",
"created": 1714000000,
"owned_by": "satryx",
"capabilities": ["chat"]
},
{
"id": "flux-dev",
"object": "model",
"created": 1714000000,
"owned_by": "satryx",
"capabilities": ["image_generation"]
}
]
}Retrieve a model
bash
curl https://api.satryx.ai/v1/models/llama-3.1-70b \
-H "Authorization: Bearer $SATRYX_API_KEY"json
{
"id": "llama-3.1-70b",
"object": "model",
"created": 1714000000,
"owned_by": "satryx",
"capabilities": ["chat"]
}Current models
| Parameter | Type | Description |
|---|---|---|
| llama-3.1-70b | chat | Meta Llama 3.1 70B. Strong reasoning, instruction following, long context. Default for /v1/chat/completions. |
| qwen3.6-35b-a3b | chat | Qwen 3.5 32B. Efficient multilingual model, lower cost. |
| flux-dev | image_generation | FLUX.1-dev. High-quality text-to-image. Default for /v1/images/generations. |
Use GET /v1/models to get the live list — new models are added here without a breaking change.
Model object fields
| Parameter | Type | Description |
|---|---|---|
| id | string | Model identifier — pass this as the model parameter in requests. |
| object | string | Always "model". |
| created | integer | Unix timestamp when the model was made available. |
| owned_by | string | Always "satryx" for first-party models. |
| capabilities | string[] | What the model can do: chat | image_generation. |