cURL
curl --request GET \ --url https://api.xtrix.workers.dev/v1/models
{ "object": "list", "data": [ { "id": "<string>", "object": "model", "created": 123, "owned_by": "<string>", "type": "chat/compilations", "capabilities": { "inputCapabilities": { "text": true, "image": true }, "outputCapabilities": { "text": true, "image": true } } } ] }
List available models
curl https://api.xtrix.workers.dev/v1/models
{ "object": "list", "data": [ { "id": "claude-3-5-sonnet-20241022", "object": "model", "created": 1729555200, "owned_by": "anthropic", "type": "chat/compilations", "capabilities": { "inputCapabilities": { "text": true, "image": true }, "outputCapabilities": { "text": true, "image": false } } }, { "id": "dall-e-3", "object": "model", "created": 1698825600, "owned_by": "openai", "type": "images/generations", "capabilities": { "inputCapabilities": { "text": true, "image": false }, "outputCapabilities": { "text": false, "image": true } } } ] }
chat/compilations
images/generations
Successful response
The response is of type object.
object