> 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-currencies.md).

# 💵 List Currencies

#### Get all accepted currencies <a href="#get-all-accepted-currencies" id="get-all-accepted-currencies"></a>

Using this endpoint, one can fetch all the accepted currencies

`GET` [https://api.konnadex.com/v1/collections/fiat-currency](https://staging.konnadex.com/v1/collections/fiat-currency)

**Headers**

<table><thead><tr><th width="107.6666259765625">Name</th><th>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 currencies",
    "data": [
        {
            "id": "e31b01f7-1cbe-4755-8984-07ddc98cbf67",
            "name": "Nigerian Naira",
            "symbol": "₦",
            "code": "NGN",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1655832428/Countries%20Logo/ngn-logo_tazf8g.svg",
            "status": "active",
            "createdAt": "2024-04-03T17:20:57.518Z",
            "updatedAt": "2024-04-26T14:21:33.413Z"
        },
        {
            "id": "f2d8de4c-911c-45ac-a6be-bfb8fd55d215",
            "name": "United States Dollar",
            "symbol": "$",
            "code": "USD",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1655832428/Countries%20Logo/usd-logo_jelgoj.svg",
            "status": "active",
            "createdAt": "2024-04-03T17:20:57.548Z",
            "updatedAt": "2024-04-26T14:21:33.418Z"
        },
        {
            "id": "cc8d9801-78c6-4b23-8810-afa55e5d634c",
            "name": "Euro",
            "symbol": "€",
            "code": "EUR",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1659516036/Countries%20Logo/eur.static.7c6f881c3b6506b03bcbda3644485094_njcnlz.svg",
            "status": "active",
            "createdAt": "2024-04-25T14:33:32.809Z",
            "updatedAt": "2024-04-26T14:21:33.414Z"
        },
        {
            "id": "86c4a68f-7a06-4c3a-aab1-b2c6eee1dc07",
            "name": "British Pound",
            "symbol": "£",
            "code": "GBP",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1659516034/Countries%20Logo/gbp.static.da0ca3d1b6d9e74642276a0ea3cde603_rhbmbh.svg",
            "status": "active",
            "createdAt": "2024-04-25T14:33:32.807Z",
            "updatedAt": "2024-04-26T14:21:33.415Z"
        },
         {
            "id": "79399590-a2eb-4468-872f-f5fc84405d8d",
            "name": "Ghanaian Cedi",
            "symbol": "GH₵",
            "code": "GHS",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1655832484/Countries%20Logo/ghs-logo_exdieo.svg",
            "status": "active",
            "createdAt": "2024-04-25T14:33:32.809Z",
            "updatedAt": "2024-04-26T14:21:33.417Z"
        },
        {
            "id": "aea3020a-7c1d-4182-b412-3db18a91037f",
            "name": "Australian Dollar",
            "symbol": "AU$",
            "code": "AUD",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1659516032/Countries%20Logo/aed.static.93a2e850c3b1ada8d436ede89073d8ac_v4odwo.svg",
            "status": "active",
            "createdAt": "2024-04-018T17:20:57.548Z",
            "updatedAt": "2024-04-018T14:21:33.416Z"
        },
        {
            "id": "aea3020a-7c1d-4182-b412-3db18a91037f",
            "name": "Japanese Yen",
            "symbol": "¥",
            "code": "JPY",
            "logo": "https://res.cloudinary.com/konnadex/image/upload/v1659516032/Countries%20Logo/aed.static.93a2e850c3b1ada8d436ede89073d8ac_v4odwo.svg",
            "status": "active",
            "createdAt": "2024-04-018T17:20:57.548Z",
            "updatedAt": "2024-04-018T14:21:33.416Z"
        },
        {
            "id": "3f556505-0fa3-4728-ad74-2c549b3e2625",
            "name": "Kenyan Shilling",
            "symbol": "Ksh",
            "code": "KES",
            "logo": "https://res.cloudinary.com/Konnadex/image/upload/v1655832428/Countries%20Logo/kes.logo_gnkj7t.svg",
            "status": "active",
            "createdAt": "2024-04-25T14:33:32.813Z",
            "updatedAt": "2024-04-26T14:21:33.416Z"
        }   
    ],
    "status": "success",
    "statusCode": 200
}
```

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