> ## 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.

# GET /v1beta/models — List Available Models

> Retrieve the complete list of models available on TokModel, including each model's ID, owning provider, and creation timestamp for routing requests.

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

<ResponseField name="object" type="string">
  Always `"list"`.
</ResponseField>

<ResponseField name="data" type="array">
  An array of model objects, one for each available model.

  <Expandable title="properties">
    <ResponseField name="id" type="string">
      The model identifier to use in API requests (for example, `"openai/gpt-4o"` or `"anthropic/claude-opus-4-5"`).
    </ResponseField>

    <ResponseField name="object" type="string">
      Always `"model"`.
    </ResponseField>

    <ResponseField name="created" type="integer">
      Unix timestamp (seconds) of when the model entry was created in TokModel's registry.
    </ResponseField>

    <ResponseField name="owned_by" type="string">
      The organization that owns or developed the model (for example, `"openai"`, `"anthropic"`, `"google"`).
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

### Request

```bash theme={null}
curl https://tokmodel.com/v1beta/models \
  --request GET \
  --header "Authorization: Bearer YOUR_API_KEY"
```

### Response

```json theme={null}
{
  "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"
    }
  ]
}
```

<Info>
  The `data` array above shows a representative sample. The full response contains all models currently available on TokModel.
</Info>
