MuchFi
CLOB Currencies

Get All Currencies

Get all currencies with optional search

GET
/clob/currencies

Query Parameters

search?string

Search by address, name, or symbol

limit?integer

Number of results

cursor?string

Cursor for pagination

Response Body

curl -X GET "https://integrated-api.mainnet.muchfi.xyz/api/clob/currencies?search=string&limit=0&cursor=string"
{
  "currencies": [
    {
      "address": "string",
      "name": "string",
      "symbol": "string",
      "decimals": 0,
      "totalSupply": "string"
    }
  ],
  "cursor": "string"
}