GET /v1/models
List the models available to your key, OpenAI-compatible. The web catalog shows the same data with live pricing and capability tags.
Example
curl https://gateway.oya.moe/v1/models \
-H "Authorization: Bearer $ARKAFLOW_API_KEY"
{
"object": "list",
"data": [
{"id": "gpt-5.1", "object": "model", "owned_by": "openai"},
{"id": "claude-opus-4-7", "object": "model", "owned_by": "anthropic"},
{"id": "seedance-2.0-fast", "object": "model", "owned_by": "starmodelpark"}
]
}
Notes
- The
idfield is exactly what you pass asmodelin generation calls. - The list reflects your workspace's access: project allowlists and BYOK configuration can narrow or extend it.
- Model availability can change with provider incidents — routing hides
most of this, but a fully unavailable model returns
404 NOT_FOUNDat call time.