# Nova AI - Models API

The Models API allows you to list and retrieve information about the available AI models in the Nova ecosystem.

## Base URL

`https://novaaiapi.nabzclan.vip/v1`

## Authentication

Include your API key in the `Authorization` header:

```bash
Authorization: Bearer YOUR_API_KEY
```

---

## List Models

Lists the currently available models, and provides basic information about each one such as the owner and availability.

### Endpoint

**GET** `/models`

### Example Request

```bash
curl -X GET https://novaaiapi.nabzclan.vip/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### Response Format

```json
{
  "object": "list",
  "data": [
    {
      "id": "nova_1_1",
      "object": "model",
      "created": 1677610602,
      "owned_by": "nova-ai",
      "name": "Nova 1.1",
      "description": "Our most capable model...",
      "pricing": {
        "prompt": "0.003000",
        "completion": "0.004000"
      },
      "capabilities": ["code", "thinking", "tools", "uncensored"]
    }
  ]
}
```

---

## Model Object

The model object contains detailed information about a model's capabilities and pricing.

- **id** (string): Unique identifier for the model (e.g., `nova_1_1`).
- **object** (string): Always `model`.
- **created** (integer): Unix timestamp of creation.
- **owned_by** (string): Organization owner.
- **name** (string): Display name.
- **description** (string): Description of capabilities.
- **pricing** (object): Cost per 1k tokens for input/output.
- **capabilities** (array): Supported features (`images`, `pdfs`, `code`, `documents`, `thinking`, `web_search`, `tools`, `uncensored`).

For full documentation and the latest list of models, visit: https://nova-ai.nabzclan.vip/user/developer/docs/models