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

# Crypto Withdrawal History

> Returns a list of the recent USDT-to-NGN withdrawals made by the business.

Retrieves the history of crypto conversion payouts for the business.


## OpenAPI

````yaml GET /crypto/withdrawals/history
openapi: 3.0.0
info:
  title: NexaPay Business API
  version: 1.0.0
  description: Server-to-server merchant integration API documentation.
servers:
  - url: https://api.nexapay.ng/api/v1/business
    description: Production Server
security: []
tags: []
paths:
  /crypto/withdrawals/history:
    get:
      tags:
        - Crypto
      summary: Retrieve crypto withdrawal history
      description: >-
        Returns a list of the recent USDT-to-NGN withdrawals made by the
        business.
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
          description: Number of records to return. Max 100.
        - $ref: '#/components/parameters/BusinessIdQuery'
        - $ref: '#/components/parameters/BusinessEnvHeader'
      responses:
        '200':
          description: List of withdrawal records.
        '500':
          description: Server error.
      security:
        - ApiKeyAuth: []
components:
  parameters:
    BusinessIdQuery:
      name: businessId
      in: query
      required: true
      schema:
        type: string
      description: >-
        The unique ID of the business profile (required for API key
        authentication).
    BusinessEnvHeader:
      name: x-business-env
      in: header
      required: false
      schema:
        type: string
        enum:
          - prod
          - test
        default: prod
      description: Target environment selector (live production vs. simulated sandbox).
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Merchant API Key (e.g., nexa-prod-... or nexa-test-...)

````