Skip to main content
GET
/
v1
/
offramps
/
{id}
Get offramp
curl --request GET \
  --url https://api.daya.co/v1/offramps/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "id": "a50e8400-e29b-41d4-a716-446655440000",
  "type": "TEMPORARY",
  "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-05T15:04:05Z",
  "updated_at": "2026-01-05T15:04:05Z"
}

Overview

Retrieve detailed information about a specific offramp, including its deposit address, chain, asset, and settlement configuration.

Authentication

X-Api-Key
string
required
Your merchant API key

Path Parameters

id
string
required
Offramp ID (UUID format)Example: a50e8400-e29b-41d4-a716-446655440000

Request Examples

curl --request GET \
  --url https://api.daya.co/v1/offramps/a50e8400-e29b-41d4-a716-446655440000 \
  --header 'X-Api-Key: YOUR_API_KEY'

Response

id
string
required
Unique offramp identifier (UUID)
type
string
required
Offramp type: TEMPORARY or PERMANENT
customer_id
string
required
Associated customer ID (UUID)
address
string
required
Crypto deposit address
chain
string
required
Blockchain network: APTOS, BASE, CELO, ETHEREUM, POLYGON, SOLANA, or TRON
asset
string
required
Stablecoin asset: USDC or USDT
status
string
required
Offramp status: ACTIVE, INACTIVE, or EXPIRED
settlement
object
required
Settlement configuration
created_at
string
required
When the offramp was created (ISO 8601 timestamp)
updated_at
string
required
When the offramp was last updated (ISO 8601 timestamp)

Success Responses

{
  "id": "a50e8400-e29b-41d4-a716-446655440000",
  "type": "TEMPORARY",
  "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-05T15:04:05Z",
  "updated_at": "2026-01-05T15:04:05Z"
}

Next Steps

List Offramps

List all offramps with filters

Create Offramp

Create a new offramp