> ## Documentation Index
> Fetch the complete documentation index at: https://docs.booleinference.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Boole AI Models Endpoint – List All 42 Available Models

> Retrieve all available Boole AI model slugs with the models endpoint, and learn how to use the returned IDs in chat and completion requests.

The `/v1/models` endpoint returns a list of all models currently available on Boole AI. Use the `id` field from each model object as the `model` parameter in `/v1/chat/completions`, `/v1/completions`, and other endpoints. The list reflects the current state of the platform and updates automatically as models are added or removed.

## Endpoint

```
GET https://api.boole.dev/v1/models
```

## Authentication

All requests to this endpoint require an `Authorization` header:

```
Authorization: Bearer YOUR_API_KEY
```

## Example Request

```bash theme={null}
curl https://api.boole.dev/v1/models \
  -H "Authorization: Bearer $BOOLE_API_KEY"
```

## Example Response

```json theme={null}
{
  "object": "list",
  "data": [
    {
      "id": "llama-3.3-70b-instruct",
      "object": "model",
      "created": 1720000000,
      "owned_by": "meta"
    },
    {
      "id": "qwen-2.5-72b-instruct",
      "object": "model",
      "created": 1720000000,
      "owned_by": "alibaba"
    },
    {
      "id": "deepseek-v3",
      "object": "model",
      "created": 1720000000,
      "owned_by": "deepseek"
    }
  ]
}
```

## Response Fields

<ResponseField name="data[].id" type="string">
  The model slug. Pass this value as the `model` parameter in API calls, e.g. `"llama-3.3-70b-instruct"`.
</ResponseField>

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

<ResponseField name="data[].owned_by" type="string">
  The organization that produced the model weights, e.g. `"meta"`, `"alibaba"`, or `"deepseek"`.
</ResponseField>

<Note>
  The full list of 42 models is returned by the live API. For per-model pricing and capability details, see [Models](/concepts/models).
</Note>
