GET/v1/models
List every model your API key can call. OpenAI-compatible wire shape — the openai SDKs work with a base_url swap to https://api.tokenfactory.omniva.com/v1.
Use this endpoint for programmatic model discovery. The richer dashboard catalog (capabilities, pricing, benchmarks) is intentionally not on this surface — see the contrast in Models overview.
#Authentication
Bearer token in the Authorization header. See Authentication for how to mint and rotate keys.
#Request
No request body. No query parameters. The list returned is scoped to the workspace that owns the API key.
#Response
Returns a list object whose data contains one model entry per callable model.
#Response fields
object— always"list".data[].id— provider-prefixed model identifier. Pass this asmodelto/v1/chat/completions,/v1/embeddings, and other endpoints.data[].object— always"model".data[].created— Unix timestamp, may be0if the model has no provider-published creation date.data[].owned_by— provider or org that owns the model.
#Errors
| Status | Code | When |
|---|---|---|
| 401 | unauthorized | Missing Authorization header or non-Bearer scheme. |
| 401 | invalid_api_key | Bearer token did not resolve to a live API key. |
| 500 | internal_error | Unexpected gateway failure — retry with backoff. |
| 503 | upstream_unavailable | Catalog backend is unreachable — retry with backoff. |
See Errors for the full error envelope and retry guidance.