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.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Responses
- 200
- 401
- 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-26T14:02:59.421Z"
}
User authentication failed.
- application/json
- Schema
- Example (from schema)
Schema
- any
{
"statusCode": 401,
"error": "USER",
"message": "Access is denied."
}
User access denied.
- 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"
}