# Query 𝔉rc20 Tokens

## Get the list of all 𝔉rc20 FTs

<mark style="color:blue;">`GET`</mark> `http://open-api.fixes.world/v1/frc20?page=0&limit=30`

#### Query Parameters

| Name  | Type   | Description                           |
| ----- | ------ | ------------------------------------- |
| page  | Number | Start page, default 0                 |
| limit | Number | Number of results returned, Up to 100 |

#### Headers

| Name                                            | Type   | Description           |
| ----------------------------------------------- | ------ | --------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer YOUR\_API\_KEY |

{% tabs %}
{% tab title="200: OK List of 𝔉rc20 TokenMeta" %}

```json
{
  "list": [
    {
      "tick": "flows",
      "max": 21000000,
      "limit": 100,
      "deployedAt": 1703304138,
      "deployer": "0xa2de93114bae3e73",
      "burnable": false,
      "supplied": 21000000,
      "burned": 0,
      "holders": 2054,
      "poolBalance": 21198.97441412,
      "stakable": true,
      "stakingAddr": "0x17c758477024fa07",
      "marketEnabled": true,
      "isVerified": true
    },
    {
      "tick": "wolf",
      "max": 1000000,
      "limit": 1000,
      "deployedAt": 1703340393,
      "deployer": "0xb9bb9404767cd896",
      "burnable": true,
      "supplied": 1000000,
      "burned": 1000,
      "holders": 126,
      "poolBalance": 199.38704598,
      "stakable": false,
      "stakingAddr": null,
      "marketEnabled": false,
      "isVerified": false
    }
  ]
}
```

{% endtab %}

{% tab title="401: Unauthorized Unauthorized" %}

{% endtab %}
{% endtabs %}
