🌟List coins

Get a list of all supported coins and their properties

Get all accepted coins

Using this endpoint, one can fetch all the accepted coins

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

Headers

NameTypeDescription

x-api-key*

string

YOUR_PUBLIC_KEY

{
  "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": "2021-12-01T16:29:42.526Z",
      "updatedAt": "2021-12-01T16:29:42.526Z"
    }
  ],
  "status": "success",
  "statusCode": 200
}

This API only returns the active coins.

Last updated