Skip to main content
GET
/
codes
Currency Codes
curl --request GET \
  --url https://payments.shakesco.com/codes \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "currency_codes": [
    "USD",
    "EUR",
    "GBP",
    "KES",
    "INR",
    "JPY",
    "BTC",
    "ETH",
    "MATIC",
    "USDT",
    "USDC",
    "DAI",
    "..."
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.shakesco.com/llms.txt

Use this file to discover all available pages before exploring further.

For the complete documentation index, see llms.txt. Retrieve the full list of supported currency codes. Use these codes when creating invoices, setting cashback thresholds, or making payment requests. Supports 300+ currencies.

Response

id
integer
Request ID
currency_codes
array
Array of supported currency code strings (e.g. USD, EUR, KES, BTC, ETH)
{
  "id": 1,
  "currency_codes": [
    "USD",
    "EUR",
    "GBP",
    "KES",
    "INR",
    "JPY",
    "BTC",
    "ETH",
    "MATIC",
    "USDT",
    "USDC",
    "DAI",
    "..."
  ]
}
Currency codes must be UPPERCASE when passed to any API endpoint.