Skip to main content

Get Supported Assets

Returns the list of supported crypto and fiat currencies for on-ramp or off-ramp.

GEThttps://api.zenpayz.com/payment/api/v1/on-ramp/supported-assets
Bearer · API key

Request

Headers

HeaderDescription
x-request-id
OPTIONAL
Custom request ID for tracing
Public Endpoint

This endpoint does not require authentication headers.

Query Parameters

ParameterTypeDescription
type
OPTIONAL
stringbuy or sell (default: buy)
country
OPTIONAL
stringISO country code (e.g. US, GB)

Response

Success (200 OK)

{
"success": true,
"data": {
"message": {
"crypto": [
{
"id": "btc_bitcoin",
"code": "BTC",
"name": "Bitcoin",
"network": "bitcoin"
},
{
"id": "eth_ethereum",
"code": "ETH",
"name": "Ethereum",
"network": "ethereum"
}
],
"fiat": [
{
"id": "usd",
"code": "USD",
"name": "US Dollar",
"symbol": "$"
},
{
"id": "eur",
"code": "EUR",
"name": "Euro",
"symbol": "\u20ac"
}
]
}
},
"message": "Supported assets retrieved"
}

Error Responses

CodeHTTPMessage
RAMP_SUPPORTED_FAILED500Failed to get supported assets

Examples

curl "https://api.zenpayz.com/payment/api/v1/on-ramp/supported-assets?type=buy&country=US"

Next Steps