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

# Payments Overview

> Overview of LearnWay fiat-to-crypto on-ramps, off-ramps, mobile money, and airtime rails.

# Payments Overview

LearnWay enables frictionless Web3 onboarding and cash-outs via partners like **Fonbnk** and mobile money / airtime gateways.

***

## Supported Rails & Currencies

* **Crypto**: `LISK_USDT`, `ETH`, `USDC`
* **Fiat & Mobile Money**: `NGN` (Nigeria), `KES` (Kenya), `GHS` (Ghana), `UGX` (Uganda), `ZAR` (South Africa), `BRL` (Brazil).
* **Payment Methods**: Bank Transfer, M-Pesa, MTN Mobile Money, Airtel Money, Airtime micro-payments.

***

## Get Available Currencies

### Endpoint

```http theme={null}
GET /api/v2/payment/currencies
```

### Headers

```http theme={null}
Authorization: Bearer <jwt_access_token>
```

### Response (200 OK)

```json theme={null}
{
  "success": true,
  "data": {
    "cryptoCurrencies": ["LISK_USDT", "USDC"],
    "fiatCurrencies": ["NGN", "KES", "GHS", "UGX", "ZAR", "BRL"]
  }
}
```

***

## Get Order Limits

### Endpoint

```http theme={null}
GET /api/v2/payment/order-limits?cryptoCurrency=LISK_USDT&fiatCurrency=NGN
```

### Response (200 OK)

```json theme={null}
{
  "success": true,
  "data": {
    "minAmount": 1,
    "maxAmount": 5000,
    "cryptoCurrency": "LISK_USDT",
    "fiatCurrency": "NGN"
  }
}
```
