This section provides the Catalogs endpoints required to manage and operate the full lifecycle of resources within the ViaBlocks platform. These endpoints are designed for secure, auditable, and scalable server-to-server integrations, and support core business operations and compliance workflows.
Returns the list of supported currencies for the specified country.
Use this endpoint to:
- Populate currency selection options
- Validate corridor currency support before transaction creation
Requires x-client-id and x-secret-key headers.
deliveryCountryISOis an ISO3 country code (e.g.,USA,MEX,COL).
400Validation errors401Invalid credentials404Country not found (when applicable)500Internal error
GET
curl -i -X GET \
https://sandbox-viablocks.viamericas.io/catalogs/countries/USA/currencies \
-H 'x-client-id: xxxx123456789' \
-H 'x-secret-key: xxxx987654321'Response
[ { "id": "1", "name": "US Dollar", "code": "USD" }, { "id": "2", "name": "Euro", "code": "EUR" } ]