Skip to main content
GET
/
v1
/
offramps
List offramps
curl --request GET \
  --url https://api.daya.co/v1/offramps \
  --header 'X-Api-Key: <x-api-key>'
{
  "data": [
    {
      "id": "a50e8400-e29b-41d4-a716-446655440000",
      "type": "PERMANENT",
      "customer_id": "650e8400-e29b-41d4-a716-446655440000",
      "address": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12",
      "chain": "ETHEREUM",
      "asset": "USDC",
      "status": "ACTIVE",
      "settlement": {
        "mode": "INTERNAL_BALANCE",
        "rate_id": null,
        "destination_bank": null
      },
      "created_at": "2026-01-10T12:00:00Z",
      "updated_at": "2026-01-10T12:00:00Z"
    },
    {
      "id": "b60e8400-e29b-41d4-a716-446655440000",
      "type": "TEMPORARY",
      "customer_id": "660e8400-e29b-41d4-a716-446655440000",
      "address": "TN3W4H6rK2ce4vX9YnFQHwKENnHjoxb3m9",
      "chain": "TRON",
      "asset": "USDT",
      "status": "ACTIVE",
      "settlement": {
        "mode": "NGN_PAYOUT",
        "rate_id": "rate_8x7k2mq9p",
        "destination_bank": {
          "account_name": "John Doe",
          "account_number": "0123456789",
          "bank_code": "058"
        }
      },
      "created_at": "2026-01-14T15:05:00Z",
      "updated_at": "2026-01-14T15:05:00Z"
    }
  ],
  "total": 2,
  "page": 1,
  "limit": 50,
  "total_pages": 1
}

Overview

Retrieve a paginated list of offramps for the authenticated merchant, with optional filtering by type, chain, asset, status, and settlement mode.

Authentication

X-Api-Key
string
required
Your merchant API key

Query Parameters

type
string
Filter by offramp typeAllowed values: TEMPORARY, PERMANENT
chain
string
Filter by blockchain networkAllowed values: APTOS, BASE, CELO, ETHEREUM, POLYGON, SOLANA, TRON
asset
string
Filter by stablecoin assetAllowed values: USDC, USDT
status
string
Filter by offramp statusAllowed values: ACTIVE, INACTIVE, EXPIRED
settlement_mode
string
Filter by settlement modeAllowed values: INTERNAL_BALANCE, NGN_PAYOUT
page
integer
Page number (1-indexed)Default: 1
limit
integer
Results per pageDefault: 50Max: 200

Request Examples

curl --request GET \
  --url 'https://api.daya.co/v1/offramps' \
  --header 'X-Api-Key: YOUR_API_KEY'

Response

data
array
required
Array of offramp objects
total
integer
required
Total number of offramps matching filters
page
integer
required
Current page number
limit
integer
required
Results per page
total_pages
integer
required
Total number of pages

Success Response

{
  "data": [
    {
      "id": "a50e8400-e29b-41d4-a716-446655440000",
      "type": "PERMANENT",
      "customer_id": "650e8400-e29b-41d4-a716-446655440000",
      "address": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12",
      "chain": "ETHEREUM",
      "asset": "USDC",
      "status": "ACTIVE",
      "settlement": {
        "mode": "INTERNAL_BALANCE",
        "rate_id": null,
        "destination_bank": null
      },
      "created_at": "2026-01-10T12:00:00Z",
      "updated_at": "2026-01-10T12:00:00Z"
    },
    {
      "id": "b60e8400-e29b-41d4-a716-446655440000",
      "type": "TEMPORARY",
      "customer_id": "660e8400-e29b-41d4-a716-446655440000",
      "address": "TN3W4H6rK2ce4vX9YnFQHwKENnHjoxb3m9",
      "chain": "TRON",
      "asset": "USDT",
      "status": "ACTIVE",
      "settlement": {
        "mode": "NGN_PAYOUT",
        "rate_id": "rate_8x7k2mq9p",
        "destination_bank": {
          "account_name": "John Doe",
          "account_number": "0123456789",
          "bank_code": "058"
        }
      },
      "created_at": "2026-01-14T15:05:00Z",
      "updated_at": "2026-01-14T15:05:00Z"
    }
  ],
  "total": 2,
  "page": 1,
  "limit": 50,
  "total_pages": 1
}

Error Responses

{
  "error": "Invalid query parameters",
  "request_id": "550e8400-e29b-41d4-a716-446655440000"
}

Next Steps

Get Offramp

Get a specific offramp by ID

Create Offramp

Create a new offramp