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

# Overview

# Adullam Transfers Overview

Use the Transfers API to **send money** to recipients via mobile money (Orange, MTN, Moov, Wave) in West Africa. You can create a transfer, retrieve a single transfer, list transfers with filters and pagination, and reverse a transfer when needed.

## Core operations

<Columns cols={2}>
  <Card title="Create Transfer" icon="circle-plus" href="/api-reference/transfers/create-transfer">
    Send money to a recipient's mobile money account (amount in XOF, channel required).
  </Card>

  <Card title="Get Transfer" icon="arrow-right-arrow-left" href="/api-reference/transfers/get-transfer">
    Retrieve a single transfer by ID.
  </Card>

  <Card title="List Transfers" icon="rectangle-list" href="/api-reference/transfers/list-transfers">
    List transfers with optional filters and pagination (cursor, limit).
  </Card>

  <Card title="Reverse Transfer" icon="clock-rotate-left" href="/api-reference/transfers/reverse-transfer">
    Reverse a transfer (cancel or refund) with reason and optional description.
  </Card>
</Columns>

## Transfer flow

1. **Create** a transfer with amount (XOF), currency (`XOF`), `recipient_phone`, and `channel`. Include `Idempotency-Key` header for safe retries.
2. Status moves from `pending` to `processing` then `completed` or `failed`. Use **List transfers** or **Get transfer** to check status, or **webhooks** for events.
3. When authorized, use **Reverse transfer** with a reason (e.g. `error`, `customer_request`).

<Info>
  Batch transfers (multiple recipients in one request) are available via the **gRPC API**. See [gRPC overview](/grpc/overview) and [Proto reference](/grpc/proto-reference).
</Info>

## Support

<Note>
  Need help? Contact us by **email** ([support@adullam.dev](mailto:support@adullam.dev)), **WhatsApp** ([chat](https://wa.me/0103961828)), or **Telegram** ([@adullam\_official](https://t.me/adullam_official)).
</Note>
