# Core Concepts

## 1. Models

Models represent the AI capabilities (chat, image generation, embeddings).

### List All Models

```bash
curl https://proxy.alfnrl.io/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"
```

Example response:

**json**

```json
{
  "object": "list",
  "data": [
    {"id": "qwen3"},
    {"id": "gemini-3-pro-preview"},
    {"id": "gemini/imagen-4.0"}
  ]
}
```

### 2. Tokens

Every request returns:

* prompt\_tokens
* completion\_tokens
* total\_tokens

### 3. Pricing

You are billed based on tokens used.

See your AlphaNeural Dashboard for pricing.

### 4. Rate Limits

Example rate limit error:

```json
{
  "error": {
    "message": "Rate limit exceeded",
    "type": "rate_limit_error",
    "code": 429
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.alphaneural.io/core-concepts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
