> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/standard-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/standard-apis/api-docs/apis/get-the-asset-supply.md).

# Get the Asset Supply

<mark style="color:green;">`POST`</mark> `Circular_GetAssetSupply_`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Body**

| Name         | Type   | Description                                                  |
| ------------ | ------ | ------------------------------------------------------------ |
| `Blockchain` | string | Blockchain address excluding the "0x" hexadecimal identifier |
| `AssetName`  | string | The asset you're looking for                                 |

**Result**

{% tabs %}
{% tab title="200" %}

```json
{
    "Result": 200,
    "Response": {
        "Total": 1000000000000.000122,
        "Circulating": 1330637945.382742,
        "Name": "CIRX"
    },
    "Node": "02fc8b01bfc5dc2911941871e6de81f5f6fe60f3961343f802ad78e7e077ea32"
}
```

{% endtab %}

{% tab title="No Data" %}
If the asset doesn't exists or the blockchain address is wrong.
{% endtab %}
{% endtabs %}
