cURL
curl --request GET \ --url https://dev.emby.ai/v1/models \ --header 'Authorization: Bearer <token>'
{ "object": "list", "data": [ { "id": "llama-3.3-70b-versatile", "object": "model", "created": 1686935002, "owned_by": "emby" }, { "id": "gpt-4", "object": "model", "created": 1687882411, "owned_by": "openai" }, { "id": "claude-3.5-sonnet", "object": "model", "created": 1688935002, "owned_by": "anthropic" } ] }
Lists all available models that can be used with the Emby API. Returns model information including ID, ownership, and capabilities.
Enter your Emby API key. Get your key from the Emby dashboard at https://dev.emby.ai
Successfully retrieved list of models
Object type, always 'list'
list
List of model objects
Show child attributes
Was this page helpful?