The Reference endpoints in Bloquo API provide foundational information such as the list of supported currencies. This is essential for validating transactions, configuring accounts, and accessing technical currency data.
GET Currency ReferenceReturns a list of supported currencies (FIAT and CRYPTO), including metadata such as name, code, type, and precision.
Endpoint:
GET /customer/currenciesOptional Parameters:
name: Filter by currency name.
code: Filter by code (e.g., BRL, USDT).
precision: Filter by decimal precision.
enabled: Filter whether the currency is enabled (true or false).
📎 Link to full response example in documentation
All requests require Bearer Token authentication.
The customerId header must be included to identify the requester.
Filters help narrow down the list to relevant currencies.
The response includes precision, enabled, type (FIAT or CRYPTO), and unique id, which are used in other endpoints such as orders and accounts.
1. Do I need to be authenticated to access currencies?
Yes. You must use a valid Bearer Token obtained via authentication with your clientId and clientSecret.
2. What does the enabled field mean?
It indicates whether the currency is active and available for use on the platform.
3. Can I use the currency code in other endpoints?
Yes. The
codeandidvalues are used in endpoints such as orders, accounts, and trades.
4. How do I know if a currency is FIAT or CRYPTO?
The response includes a
typefield that specifiesFIATorCRYPTO.
Now you're ready to retrieve and use currency data from the Reference endpoints in the Bloquo API. For more information, visit the official Bloquo documentation.