How to retrieve available currencies using the Reference endpoints in the Bloquo API?

How to retrieve available currencies using the Reference endpoints?

💠 Bloquo API: Reference Endpoints (Currencies)


Overview

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.


🌐 Currency Reference

GET Currency Reference

Returns a list of supported currencies (FIAT and CRYPTO), including metadata such as name, code, type, and precision.

Endpoint:

GET /customer/currencies

Optional 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


⚠️ Key Notes

  • 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.


❓ FAQ – Common Questions

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 code and id values 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 type field that specifies FIAT or CRYPTO.


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.

    • Related Articles

    • How to use the Trades endpoints in the Bloquo API?

      ? Bloquo API: Trades Endpoints Overview The Trades endpoints allow efficient currency exchange operations on the platform, including quote requests, trade confirmations, and trade history listing. ? Request Quote POST Request Quote Request a quote ...
    • How to use the Accounting endpoints in the Bloquo API?

      ? Bloquo API: Accounting Endpoints ✅ Overview The Accounting section endpoints of the Bloquo API allow you to retrieve financial data of the authenticated customer, such as: Customer registration details Accounts (FIAT and CRYPTO) Current balances ...
    • How to use the Orders endpoints in the Bloquo API?

      ? Bloquo API: Orders Endpoints Overview The Orders section of the Bloquo API allows you to create, list, and refund deposit and withdrawal orders. This functionality is essential for managing incoming and outgoing transactions on the platform. ? ...
    • How to Authenticate Using Bearer Token?

      ? Bloquo API: Authentication 1. Overview Authentication in the Bloquo API is handled via a Bearer Token, generated using your application's clientId and clientSecret. This token is required to access any protected API resources. 2. Authentication ...
    • How to use the Notifications endpoints in the Bloquo API?

      ? Bloquo API: Notification Endpoints Overview The Notifications endpoints allow clients to retrieve a history of notifications generated by the platform (such as transaction status changes) and to manually trigger resending of notifications if ...