> For the complete documentation index, see [llms.txt](https://konnadex-docs.gitbook.io/konnadex-technologies/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://konnadex-docs.gitbook.io/konnadex-technologies/miscellaneous/list-coins.md).

# 🪙 List Coins

**Get all accepted coins**

Using this endpoint, one can fetch all the accepted coins

`GET` `https://api.konndex.com/api/v1/coins`

**Headers**

<table><thead><tr><th width="117">Name</th><th width="157.33331298828125">Type</th><th>Description</th></tr></thead><tbody><tr><td>x-api-key*</td><td>string</td><td>YOUR_SECRET_KEY</td></tr></tbody></table>

200: OK Success

```javascript
{
  "message": "Retrive accepted coins",
  "data": [
    {
      "id": "56906c2a-b2d7-4efe-92f6-2a079f844a2e",
      "name": "Dai Stablecoin",
      "symbol": "DAI",
      "logo": "https://cryptologos.cc/logos/multi-collateral-dai-dai-logo.png?v=014",
      "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3",
      "network": "mainnet",
      "blockchain": "Binance Smart Chain",
      "status": "active",
      "createdAt": "2021-12-01T16:29:42.518Z",
      "updatedAt": "2021-12-01T16:29:42.518Z"
    },
    {
      "id": "b31db87a-aba0-4409-9521-c5c6611850f7",
      "name": "USD Coin",
      "symbol": "USDC",
      "logo": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=014",
      "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d",
      "network": "mainnet",
      "blockchain": "Binance Smart Chain",
      "status": "active",
      "createdAt": "2021-12-01T16:29:42.518Z",
      "updatedAt": "2021-12-01T16:29:42.518Z"
    },
    {
      "id": "c29c9762-b9a4-4e35-a895-f62ea99a3f58",
      "name": "Binance USD",
      "symbol": "BUSD",
      "logo": "https://cryptologos.cc/logos/binance-usd-busd-logo.png?v=014",
      "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56",
      "network": "mainnet",
      "blockchain": "Binance Smart Chain",
      "status": "active",
      "createdAt": "2021-12-01T16:29:42.527Z",
      "updatedAt": "2021-12-01T16:29:42.527Z"
    },
    {
      "id": "e472302a-f639-45d2-8916-8f3408781200",
      "name": "Tether (USDT)",
      "symbol": "USDT",
      "logo": "https://cryptologos.cc/logos/tether-usdt-logo.png?v=014",
      "address": "0x55d398326f99059fF775485246999027B3197955",
      "network": "mainnet",
      "blockchain": "Binance Smart Chain",
      "status": "active",
      "createdAt": "2023-12-01T16:29:42.526Z",
      "updatedAt": "2023-12-01T16:29:42.526Z"
    }
  ],
  "status": "success",
  "statusCode": 200
}
```

{% hint style="info" %}
This API only returns the active coins.
{% endhint %}
