# CURRENCIES

## GET Currency (ERC-20) List

#### Example of request:

```
https://api.certhis.io/currencies
```

{% tabs %}
{% tab title="REQUEST" %}
Query Parameters<br>

<table><thead><tr><th width="319">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>offset_page</td><td>the <code>int</code> representing the page index</td></tr><tr><td>contract_id</td><td>the <code>int</code> representing contract certhis id</td></tr><tr><td>search</td><td>the <code>string</code> representing the Search by currency name</td></tr></tbody></table>
{% endtab %}

{% tab title="RESPONSE" %}
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
   }
}
```

{% endtab %}
{% endtabs %}
