Documentation Index Fetch the complete documentation index at: https://docs.tokmodel.com/llms.txt
Use this file to discover all available pages before exploring further.
The /v1beta/models endpoint returns every model currently available through TokModel. Use this endpoint to discover model IDs you can pass to other endpoints such as /v1/chat/completions, /v1/embeddings, or /v1/images/generations. No request body is required — send an authenticated GET request and you receive the full model list.
Request
This endpoint takes no request body or query parameters.
Response fields
An array of model objects, one for each available model. The model identifier to use in API requests (for example, "openai/gpt-4o" or "anthropic/claude-opus-4-5").
Unix timestamp (seconds) of when the model entry was created in TokModel’s registry.
The organization that owns or developed the model (for example, "openai", "anthropic", "google").
Example
Request
curl https://tokmodel.com/v1beta/models \
--request GET \
--header "Authorization: Bearer YOUR_API_KEY"
Response
{
"object" : "list" ,
"data" : [
{
"id" : "openai/gpt-4o" ,
"object" : "model" ,
"created" : 1715299200 ,
"owned_by" : "openai"
},
{
"id" : "openai/gpt-4o-mini" ,
"object" : "model" ,
"created" : 1715299200 ,
"owned_by" : "openai"
},
{
"id" : "anthropic/claude-opus-4-5" ,
"object" : "model" ,
"created" : 1716470400 ,
"owned_by" : "anthropic"
},
{
"id" : "anthropic/claude-sonnet-4-5" ,
"object" : "model" ,
"created" : 1716470400 ,
"owned_by" : "anthropic"
},
{
"id" : "google/gemini-2.0-flash" ,
"object" : "model" ,
"created" : 1716470400 ,
"owned_by" : "google"
},
{
"id" : "openai/text-embedding-3-small" ,
"object" : "model" ,
"created" : 1709510400 ,
"owned_by" : "openai"
},
{
"id" : "cohere/rerank-english-v3.0" ,
"object" : "model" ,
"created" : 1709510400 ,
"owned_by" : "cohere"
},
{
"id" : "openai/dall-e-3" ,
"object" : "model" ,
"created" : 1698710400 ,
"owned_by" : "openai"
},
{
"id" : "openai/tts-1" ,
"object" : "model" ,
"created" : 1709510400 ,
"owned_by" : "openai"
},
{
"id" : "openai/whisper-1" ,
"object" : "model" ,
"created" : 1677110400 ,
"owned_by" : "openai"
}
]
}
The data array above shows a representative sample. The full response contains all models currently available on TokModel.