> For the complete documentation index, see [llms.txt](https://aliniex.gitbook.io/alix-pay/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aliniex.gitbook.io/alix-pay/api-reference/card-api/getting-your-first-card.md).

# Getting Your First Card

This guide walks you through the minimum steps required to issue your first card.

<figure><img src="/files/tQgtHr2uoupjmFl4Ukm0" alt=""><figcaption></figcaption></figure>

#### Step 1 — Authenticate

Follow the instructions in the [Access Token](/alix-pay/api-reference/alix-card-api/auth/access-token.md)

***

#### Step 2 — Complete KYC

Follow the instructions in the [KYC Verification Flow](/alix-pay/api-reference/card-api/kyc-verification-flow.md)

***

#### Step 3 — Select a Product

Call `GET /card/v3/products`  (flow the [API Reference](/alix-pay/api-reference/card-api/api-reference.md)) to retrieve available card products. Note the `id` of the product you want to issue — you will need it in the next step.

***

#### Step 4 — Create the Card

Call `POST /card/v3/cards`  (flow the [API Reference](/alix-pay/api-reference/card-api/api-reference.md)) with the chosen `productId`. On success, a card record is created with status `Init` and a unique card `id` is returned.

***

#### Step 5 — Top Up the Card

A newly created card has a zero balance. Call `POST /card/v3/cards/{cardId}/topups` with the desired `amount` to fund the card. You may optionally call `POST /card/v3/cards/{cardId}/topup-quotes` first to preview the applicable fee before committing. (flow the [API Reference](/alix-pay/api-reference/card-api/api-reference.md))

Once topped up, the card is ready to use.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://aliniex.gitbook.io/alix-pay/api-reference/card-api/getting-your-first-card.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.
