Get Indicative Stream Quotation
GET/v1/crossborder/stream-quotations
Returns a real-time indicative exchange rate for a given currency pair and side. This is not a firm quote (RFQ) and does not guarantee execution at the returned price.
Request
Query Parameters
Possible values: [USD]
Base currency symbol.
Possible values: [BRL]
Quote currency symbol.
Possible values: [BUY, SELL]
Side.
Header Parameters
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
- 403
- 422
Stream quotation retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
Stream Quotation ID.
Base currency symbol.
Quote currency symbol.
Rate price.
Possible values: [BUY, SELL]
Side.
Timestamp.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"base_currency_symbol": "USD",
"quote_currency_symbol": "BRL",
"price": 5.1234,
"side": "BUY",
"timestamp": "2026-03-06T21:03:37.382Z"
}
User authentication failed.
- application/json
- Schema
- Example (from schema)
Schema
- any
{
"statusCode": 403,
"error": "USER",
"message": "Access denied to requested resource. User may not have sufficient permission."
}
If any required params are missing or have invalid format or type.
- application/json
- Schema
- Example (from schema)
Schema
- any
{
"statusCode": 422,
"error": "USER",
"message": "The value BR is not accepted in param quote_currency_symbol. quote_currency_symbol must be one of the following values: BRL",
"code": "VALIDATION"
}