> For the complete documentation index, see [llms.txt](https://igniz.gitbook.io/igniz-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://igniz.gitbook.io/igniz-docs/api.md).

# API

> For the complete documentation index, see [llms.txt](https://github.com/igniz-dex/docs/tree/main/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](/igniz-docs/api.md).

## API

> **Note:** This is a sample page. The full API reference will be imported here later.

**Introduction**

The Igniz API lets developers integrate market data, account information, and trading functionality into their own applications. This page will host the complete reference, including authentication, endpoints, rate limits, and code examples.

**Sample: Base URL**

```
https://api.igniz.example/v1
```

**Sample: Authenticated Request**

```http
GET /v1/markets/ticker?symbol=BTCUSDT
Authorization: Bearer <API_KEY>
```

```json
{
  "symbol": "BTCUSDT",
  "lastPrice": "0.00",
  "priceChangePercent": "0.00"
}
```

> The endpoints, parameters, and payloads shown above are illustrative placeholders only. Final, authoritative API documentation will replace this page.
