API reference
Models
GET /v1/models. Lists the model aliases configured for your organization, in the OpenAI models list format.
GET https://YOUR-DOOR-ADDRESS/v1/modelsThe model field on every door takes an alias configured for your organization. Each alias names the model that answers and the provider key used to call it. This call lists your aliases.
Example
Section titled “Example”for model in client.models.list(): print(model.id)for await (const model of client.models.list()) { console.log(model.id);}curl "$SYDERIAL_DOOR_URL/v1/models" -H @syderial-headers.txtResponse
Section titled “Response”{ "object": "list", "data": [ { "id": "<alias>", "object": "model", "owned_by": "syderial", "endpoint_family": "<the door family this alias serves>" } ]}endpoint_family says which door an alias is meant for. Use id as the model value in your calls.