🧑‍🚀 CERTHIS 🧑‍🚀
  • 🎯GET STARTED
    • Platform Quick Overview
    • Certhis Academy
    • Create Collection
  • 👾API Object References
    • Collection
    • NFT
    • User
    • Label
    • Currency
  • 🖼️Dynamic NFT
    • Authentication
    • API Endpoints
  • ⚙️Web3 CRM
    • API Endpoints
    • Webhook
  • 🍏Apple & Google Wallet
    • API Endpoints
    • Scanner
  • 🛒NFT Checkout
    • Claimer
    • API Endpoint
  • ⛏️Mint API
    • API Endpoint
    • MINTER ADDRESS
    • Webhook
    • Free Claim User
  • ✴️API endpoints
    • COLLECTION
    • CURRENCIES
    • NFT
    • STATISTICS
    • TRANSACTIONS
    • USER
    • SIGNATURE
    • CONTRACT
  • 📖Certhis SDK
    • Deploy Collection
    • Fetch NFT
    • Fetch Transactions
  • 💰Certhis WALLET
    • Introduction
    • Usage
    • Generate Wallet
    • Export private key
    • Connect to DAPP
  • 📜Smart Contract
    • ABI
    • INTERFACE
    • Audit
    • Contract Checker
  • 💸Royalties
    • Mint Royalties
    • Resell Royalties
    • Affiliation Royalties
    • Co-Creator Royalties
    • Deactivate Collection Royatlies
  • GATE
  • Community
    • 🔗Certhis On Social Media
    • 🏛️Founders
    • 📞Contact
  • FAQ
    • ❔FAQ
Powered by GitBook
On this page
  1. API endpoints

CURRENCIES

GET Currency (ERC-20) List

Example of request:

https://api.certhis.io/currencies

Query Parameters

Parameter
Description

offset_page

the int representing the page index

contract_id

the int representing contract certhis id

search

the string representing the Search by currency name

Sample response

{
   "status":true,
   "message":"token list",
   "data":[
      {
         "id":5298,
         "name":"Wrapped ETH",
         "address":"0xed55d200f232c890e275b7882f4e49b4304f920d",
         "chainId":43113,
         "decimals":18,
         "symbol":"wETH",
         "logoURI":null
      },
      {
         "id":5299,
         "name":"ChainLink Token",
         "address":"0x0b9d5d9136855f6fec3c0993fee6e9ce8a297846",
         "chainId":43113,
         "decimals":18,
         "symbol":"LINK",
         "logoURI":null
      },
      {
         "id":5304,
         "name":"USD Coin",
         "address":"0xA4C930EbD593197226CEc2Cbdc6927bcF405338C",
         "chainId":43113,
         "decimals":6,
         "symbol":"USDC",
         "logoURI":null
      },
      {
         "id":5306,
         "name":"Wrapped AVAX",
         "address":"0xd4743A7B6cCeAa5d6EBAb19013012F5D1Fc779CB",
         "chainId":43113,
         "decimals":18,
         "symbol":"WAVAX",
         "logoURI":null
      },
      {
         "id":5307,
         "name":"USD Coin",
         "address":"0x5425890298aed601595a70AB815c96711a31Bc65",
         "chainId":43113,
         "decimals":6,
         "symbol":"USDC",
         "logoURI":null
      }
   ],
   "pagination":{
      "more":true
   }
}

PreviousCOLLECTIONNextNFT

Last updated 10 months ago

✴️