> ## 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.

# List transfers

> Retrieve a list of transfers with optional filters

# List Transfers

Listing transfers with pagination allows you to review recent transfer activity in your Adullam account. Use the List Transfers API to retrieve a paginated list of transfers, including details such as amount, status, and recipient information.


## OpenAPI

````yaml get /v1/transfers
openapi: 3.0.3
info:
  title: Adullam Payment API
  version: 1.0.0
  description: >
    Adullam is a payment processing platform for mobile money transactions in
    West Africa.


    This API enables developers to:

    - Collect payments from customers via mobile money

    - Send money to recipients

    - Track transactions and account balance


    ## Authentication

    All endpoints (except auth endpoints) require Bearer token authentication.


    ## Base URL

    Production: `https://api.adullam.dev`


    ## Rate Limiting

    - 100 requests per minute

    - 1000 requests per hour
  contact:
    email: support@adullam.dev
    url: https://docs.adullam.dev
  license:
    name: Proprietary
    url: https://adullam.dev/terms
servers:
  - url: https://api.adullam.dev
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Partner authentication and token management
  - name: Payments
    description: Collect money from customers via mobile money
  - name: Transfers
    description: Send money to recipients via mobile money
  - name: Account
    description: Account and balance management
paths:
  /v1/transfers:
    get:
      tags:
        - Transfers
      summary: List transfers
      description: Retrieve a list of transfers with optional filters
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - processing
              - completed
              - failed
              - cancelled
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: cursor
          in: query
          schema:
            type: string
        - name: recipient_phone
          in: query
          schema:
            type: string
        - name: channel
          in: query
          schema:
            type: string
            enum:
              - orangeCI
              - mtnCI
              - moovCI
              - waveCI
        - name: reference
          in: query
          schema:
            type: string
        - name: created_after
          in: query
          schema:
            type: string
            format: date-time
        - name: created_before
          in: query
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: List of transfers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferList'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    TransferList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Transfer'
        has_more:
          type: boolean
          example: true
        next_cursor:
          type: string
          nullable: true
          example: ghi789
    Transfer:
      type: object
      properties:
        id:
          type: string
          example: txf_abc123
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
            - cancelled
          example: processing
        amount:
          type: integer
          example: 10000
        currency:
          type: string
          example: XOF
        recipient_phone:
          type: string
          example: '+22507123456'
        recipient_name:
          type: string
          nullable: true
          example: DIALLO IBRAHIM
        channel:
          type: string
          enum:
            - orangeCI
            - mtnCI
            - moovCI
            - waveCI
          example: mtnCI
        description:
          type: string
          example: Salary payment
        reference:
          type: string
          example: PAY_001
        ussd_reference:
          type: string
          nullable: true
          example: MP240115.1032.T98765
        fees:
          type: integer
          example: 50
        metadata:
          type: object
          additionalProperties:
            type: string
          example:
            employee_id: EMP_123
        created_at:
          type: string
          format: date-time
          example: '2024-01-15T10:30:00Z'
        updated_at:
          type: string
          format: date-time
          example: '2024-01-15T10:30:00Z'
        completed_at:
          type: string
          format: date-time
          nullable: true
          example: null
        failure_reason:
          type: string
          nullable: true
          example: null
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              enum:
                - authentication_error
                - invalid_request
                - insufficient_funds
                - rate_limit_exceeded
                - channel_error
                - transaction_failed
                - server_error
              example: invalid_request
            code:
              type: string
              example: amount_too_low
            message:
              type: string
              example: Amount must be at least 100 XOF
            field:
              type: string
              nullable: true
              example: amount
            request_id:
              type: string
              example: req_abc123
  responses:
    Unauthorized:
      description: Unauthorized - Invalid or missing authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              type: authentication_error
              code: invalid_token
              message: Invalid or expired access token
              request_id: req_abc123
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use the access token obtained from /v1/auth/token

````