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

# API quickstart

## Sign up

* Minimum top-up: **\$1**
* Register: [Sign up](https://tokensmind.ai/register)

## Setup

### 1. Get a token

1. Log in to the console.
2. Open the **Tokens** page.
3. Click **Add token** to create an API key.

### 2. Configure the endpoint

#### Optional BASE\_URL values

```
https://tokensmind.ai
https://tokensmind.ai/v1
https://tokensmind.ai/v1/chat/completions
```

> Different clients may need different BASE\_URL values—try the options above in order.

### 3. Choose a model

* Model names appear in the first column of the home **Supported models** list.

## Verify

1. Test in the chat page in the console.
2. Or use an API client (e.g. Postman).

### Example config

```json theme={null}
{
  "base_url": "https://tokensmind.ai",
  "api_key": "your_token_here",
  "model": "selected_model_name"
}
```

> Test in the chat UI first, then wire it into your app.
