💵List currencies

Get a list of all supported currencies and their properties

Get all accepted currencies

Using this endpoint, one can fetch all the accepted currencies

GET https://api.lazerpay.engineering/api/v1/currencies

Headers

NameTypeDescription

x-api-key*

string

YOUR_PUBLIC_KEY

{
    "message": "Retrive accepted currencies",
    "data": [
        {
            "id": "e31b01f7-1cbe-4755-8984-07ddc98cbf67",
            "name": "Nigerian Naira",
            "symbol": "₦",
            "code": "NGN",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/ngn-logo_tazf8g.svg",
            "status": "active",
            "createdAt": "2022-09-03T17:20:57.518Z",
            "updatedAt": "2022-09-26T14:21:33.413Z"
        },
        {
            "id": "cc8d9801-78c6-4b23-8810-afa55e5d634c",
            "name": "Euro",
            "symbol": "€",
            "code": "EUR",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1659516036/Countries%20Logo/eur.static.7c6f881c3b6506b03bcbda3644485094_njcnlz.svg",
            "status": "active",
            "createdAt": "2022-09-25T14:33:32.809Z",
            "updatedAt": "2022-09-26T14:21:33.414Z"
        },
        {
            "id": "86c4a68f-7a06-4c3a-aab1-b2c6eee1dc07",
            "name": "British Pound",
            "symbol": "£",
            "code": "GBP",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1659516034/Countries%20Logo/gbp.static.da0ca3d1b6d9e74642276a0ea3cde603_rhbmbh.svg",
            "status": "active",
            "createdAt": "2022-09-25T14:33:32.807Z",
            "updatedAt": "2022-09-26T14:21:33.415Z"
        },
        {
            "id": "aea3020a-7c1d-4182-b412-3db18a91037f",
            "name": "United Emirates Dirham",
            "symbol": "د.إ",
            "code": "AED",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1659516032/Countries%20Logo/aed.static.93a2e850c3b1ada8d436ede89073d8ac_v4odwo.svg",
            "status": "active",
            "createdAt": "2022-09-03T17:20:57.548Z",
            "updatedAt": "2022-09-26T14:21:33.416Z"
        },
        {
            "id": "3f556505-0fa3-4728-ad74-2c549b3e2625",
            "name": "Kenyan Shilling",
            "symbol": "Ksh",
            "code": "KES",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/kes.logo_gnkj7t.svg",
            "status": "active",
            "createdAt": "2022-09-25T14:33:32.813Z",
            "updatedAt": "2022-09-26T14:21:33.416Z"
        },
        {
            "id": "00033448-e209-49b9-b45a-1df790436cb6",
            "name": "Ugandan Shilling",
            "symbol": "USh",
            "code": "UGX",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1660211804/Countries%20Logo/ugx.static.f92faf2ecc0220912b33175d69b6dabb_chj98b.svg",
            "status": "active",
            "createdAt": "2022-09-25T14:34:46.057Z",
            "updatedAt": "2022-09-26T14:21:33.417Z"
        },
        {
            "id": "79399590-a2eb-4468-872f-f5fc84405d8d",
            "name": "Ghanaian Cedi",
            "symbol": "GH₵",
            "code": "GHS",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1655832484/Countries%20Logo/ghs-logo_exdieo.svg",
            "status": "active",
            "createdAt": "2022-09-25T14:33:32.809Z",
            "updatedAt": "2022-09-26T14:21:33.417Z"
        },
        {
            "id": "f2d8de4c-911c-45ac-a6be-bfb8fd55d215",
            "name": "United States Dollar",
            "symbol": "$",
            "code": "USD",
            "logo": "https://res.cloudinary.com/lazer/image/upload/v1655832428/Countries%20Logo/usd-logo_jelgoj.svg",
            "status": "active",
            "createdAt": "2022-09-03T17:20:57.548Z",
            "updatedAt": "2022-09-26T14:21:33.418Z"
        }
    ],
    "status": "success",
    "statusCode": 200
}

This API only returns the active currencies.

Last updated