Models
List and describe the various models available in the Sybil API.
List Models
GET https://api.sybil.com/v1/models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
Example Request
curl https://api.sybil.com/v1/models \
-H "Authorization: Bearer $SYBIL_API_KEY"
Response Format
{
"data": [
{
"id": "DeepSeek-R3",
"owned_by": "deepseek"
},
{
"id": "gpt-4.1",
"owned_by": "openai"
}
]
}