Get Crossborder Rates
GET/v1/crossborder/rates
Get crossborder exchange rates for a currency pair. Returns buy and sell prices, amounts, and currency information.
Request
Query Parameters
Base currency symbol.
Quote currency symbol.
Possible values: [base, quote]
Amount currency (base or quote).
Amount in cents.
Possible values: [buy, sell]
Order side (BUY or SELL).
Header Parameters
The transaction ID is a UUID (v4) used to uniquely identify the object that will be created. All objects must have an identifier.
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
The product ID is a UUID (v4) used to identify the Z.ro product configuration.
The product target user ID is a UUID (v4) used to identify what user account this request must be executed. Require: x-product-uuid.
Responses
- 200
- 400
- 401
Rates returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
Rate ID.
Price buy in cents.
Price sell in cents.
Possible values: [buy, sell]
Order side.
Base amount buy in cents.
Base amount sell in cents.
Base currency symbol.
Base currency decimal places.
Base currency title.
Quote amount buy in cents.
Quote amount sell in cents.
Quote currency symbol.
Quote currency decimal places.
Quote currency title.
Time to live (TTL) date.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"price_buy": 0,
"price_sell": 0,
"side": "buy",
"base_amount_buy": 0,
"base_amount_sell": 0,
"base_currency_symbol": "USD",
"base_currency_decimal": 2,
"base_currency_title": "US Dollar",
"quote_amount_buy": 0,
"quote_amount_sell": 0,
"quote_currency_symbol": "BRL",
"quote_currency_decimal": 2,
"quote_currency_title": "Brazilian Real",
"ttl": "2026-01-23T18:06:53.176Z"
}
If any required params are missing or has invalid format or type.
User authentication failed.