Skip to content

GET /currencies

  • Method: GET
  • URL: https://pos.b4bit.com/api/v1/currencies
  • Authentication: X-Device-Id header — see Authentication.

None.

Ventana de terminal
curl -H "X-Device-Id: $B4BIT_API_KEY" \
https://pos.b4bit.com/api/v1/currencies
[
{
"symbol": "USDC_POLYGON_NXTB",
"name": "USD Coin USDC",
"min_amount": "1.00",
"max_amount": null,
"image": "https://pos.b4bit.com/media/crytocurrencies/...",
"blockchain": "MATIC_POLYGON"
},
{
"symbol": "TRX_USDC_6NU3",
"name": "USD Coin USDC",
"min_amount": "10.00",
"max_amount": "1200.00",
"image": "https://pos.b4bit.com/media/crytocurrencies/...",
"blockchain": "TRX"
}
]
FieldTypeDescription
symbolstringGranular per (currency, network). Use as input_currency on POST /orders/.
namestringFriendly crypto name.
min_amountstring (decimal)Minimum amount per payment (in fiat).
max_amountstring (decimal) | nullMaximum amount per payment. null = no limit.
imagestring (URL)Crypto icon.
blockchainstringBlockchain network code.
  • 403 — Missing or invalid X-Device-Id.
  • 500 — Internal error. Retry with backoff.