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

# Remitflex — stablecoin infrastructure for Africa

> Programmable stablecoin payments, local fiat rails, and cross-chain collection — built for African fintechs, platforms, and enterprises.

Remitflex is payment infrastructure for the African market. One REST API covers cross-chain collection, local bank payouts, and fiat-to-stablecoin deposits — with a single ledger for reconciliation.

You integrate with Remitflex. We handle wallets, FX, cross-chain routing, and local bank settlement behind the scenes.

## Choose a product

| You want…                               | Use                                        | API                                     |
| --------------------------------------- | ------------------------------------------ | --------------------------------------- |
| Shareable invoice / checkout URL        | [Payment links](/products/payment-links)   | `POST /v1/collections`                  |
| Persistent deposit address              | [Payment routes](/products/payment-routes) | `POST /v1/payment-routes`               |
| EURC ↔ USDC on Solana (treasury)        | [Swaps](/products/swaps)                   | `POST /v1/swaps`                        |
| Stablecoin → local bank                 | [Local fiat](/products/fiat-rails)         | `POST /v1/offramps`                     |
| Local bank → stablecoin wallet          | [Local fiat](/products/fiat-rails)         | `POST /v1/onramps`                      |
| NGN VA + cNGN wallet (convert / payout) | [cNGN](/products/cngn)                     | `/v1/cngn/*`                            |
| Live FX quotes                          | [Rates](/products/rates)                   | `/v1/fiat/rates/...` or `/v1/rates/...` |
| Reconcile everything                    | [Transactions](/products/transactions)     | `GET /v1/transactions`                  |

See [Networks & corridors](/concepts/networks-and-corridors) and the [corridor matrix](/concepts/corridor-matrix) before collecting crypto.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    API key, first payment route, first collection — under ten minutes.
  </Card>

  <Card title="Customers" icon="users" href="/products/customers">
    Organise payers and beneficiaries before you create payments.
  </Card>

  <Card title="Dashboard" icon="layout-dashboard" href="https://dashboard.remitflex.io">
    Sign up, manage API keys, and monitor activity at dashboard.remitflex.io.
  </Card>

  <Card title="API reference" icon="code" href="/api-reference/overview">
    Interactive playground for every endpoint.
  </Card>
</CardGroup>

## Typical African flows

1. **Collect globally** — payment link or route into USDC/USDT (or Solana EURC)
2. **Hold** in stablecoin treasury
3. **Pay locally** — offramp to a bank account, or cNGN payout from a customer wallet
4. **Reconcile** with `GET /v1/transactions`

## How it works

```mermaid theme={null}
flowchart LR
  subgraph YourApp["Your application"]
    API[Remitflex API]
  end
  subgraph Products["Products"]
    Collect[Links and routes]
    Convert[Swaps and rates]
    Local[Fiat and cNGN]
  end
  subgraph Ledger["Ledger"]
    Tx[Transactions]
  end
  API --> Collect
  API --> Convert
  API --> Local
  Collect --> Tx
  Convert --> Tx
  Local --> Tx
```

## Get started

<Steps>
  <Step title="Create an account">
    Register at [dashboard.remitflex.io](https://dashboard.remitflex.io) and complete email OTP verification.
  </Step>

  <Step title="Create an API key">
    In the dashboard, create a **test** key with scopes for the products you need (full access: `api:read` + `api:write`).
  </Step>

  <Step title="Integrate">
    Follow the [Quickstart](/quickstart) or jump to a product from the table above.
  </Step>
</Steps>

For push status updates, see [Webhooks](/guides/webhooks). You can also poll order endpoints or `GET /v1/transactions`.
