cURL
curl --request GET \ --url https://api.example.com/models \ --header 'Authorization: Bearer <token>'
[ { "id": "gpt-4", "provider": "openai" }, { "id": "claude-3-sonnet", "provider": "anthropic" } ]
Retrieve a list of all unique models currently used by agents and teams in this OS instance. This includes the model ID and provider information for each model.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of models retrieved successfully
Model identifier
Model provider name
Was this page helpful?