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

# Kalixo Distribution API

> Browse your catalog, order digital gift cards, and track delivery - all from one modern REST API.

<Note>
  **API v2 is async-first.** You place an order, get an `orderId` back instantly, then poll
  the order until your codes are delivered. No long-held HTTP requests, no timeouts on big orders.
</Note>

The Kalixo Distribution API gives partners programmatic access to their gift-card catalog,
ordering, and wallet - over a clean, predictable REST interface.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="bolt" href="/quickstart">
    Make your first authenticated call and place a test order in a few minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Use your `x-api-key` to authenticate every request.
  </Card>

  <Card title="API reference" icon="code" href="/api-reference/introduction">
    Explore every endpoint with a built-in “Try it” playground.
  </Card>

  <Card title="Migrating from v1" icon="arrow-right-arrow-left" href="/migrating-from-v1">
    What changed, and how to move your integration to v2.
  </Card>
</CardGroup>

## What you can do

<CardGroup cols={3}>
  <Card title="Catalog" icon="shapes" href="/api-reference/introduction">
    List products with filtering (country, language, brand, category, tag) and pagination.
  </Card>

  <Card title="Orders" icon="cart-shopping" href="/concepts/order-lifecycle">
    Place single or bulk orders and poll them to completion.
  </Card>

  <Card title="Wallet" icon="wallet" href="/api-reference/introduction">
    Check your balances per currency and stay ahead of low-balance alerts.
  </Card>
</CardGroup>

## Base URL

All v2 endpoints live under a single base URL. Send your API key in the `x-api-key` header.

<CodeGroup>
  ```bash Production theme={"dark"}
  https://api.kalixo.io/v2
  ```

  ```bash Sandbox theme={"dark"}
  https://sandbox.kalixo.io/v2
  ```
</CodeGroup>

<Info>
  Domains are placeholders during the pre-release. Your account manager will confirm the
  final base URL and issue your sandbox + production keys.
</Info>
