Coinfat

Embedded Checkout

List payable coins

Return the invoice's supported coins, each grouped with its active networks, the data you render as a coin and network picker.

GET/api/invoices/{invoice}/walletsinvoices:read

Path parameters

The final path segment is the invoice's ulid. A foreign or unknown invoice returns 404.

Response

Returns data[]: the invoice's supported coins, each with a nested networks[] of its active networks. Render this directly as your picker.

  • Coins with no active network are omitted. They are never offered.
  • Nested network entries are slimmed: they do not repeat the parent coin (no wallet or execution_fee_wallet on each network).
bash
curl https://api.coinfat.com/api/invoices/01JZ8Q5F2H7T9K1M3N5P7R9S1U/wallets \
-H "Authorization: Bearer 42|nX9...secret"
200 OK
{
"data": [
{
"id": "btc",
"name": "Bitcoin",
"symbol": "BTC",
"scale": 8,
"networks": [
{ "id": "bitcoin", "name": "Bitcoin" }
]
},
{
"id": "usdt",
"name": "Tether",
"symbol": "USDT",
"scale": 6,
"networks": [
{ "id": "tron", "name": "Tron (TRC20)" },
{ "id": "ethereum", "name": "Ethereum (ERC20)" }
]
}
]
}