GET /account/models
List selectable agent models.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/account/models |
Most expensive first, with the organization's default model flagged (`is_default_agent_model`: the `default_model` of `GET /v1/account/settings`). Reads the same registry as the dashboard's rate table, so a client's model picker can never drift from what's offered. The selectable set is global; only the flag is account-scoped.
curl "https://api.ellipsis.dev/v1/account/models" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.account.models.list()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.models.list();
console.log(result);Request
Response
Example response · 200
{
}