> For the complete documentation index, see [llms.txt](https://docs.vida.id/identity-stack/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vida.id/identity-stack/sign/e-meterai-stamp/api-integration/e-meterai-api/api-reference/get-quota.md).

# Get Quota

This API endpoint allows users to check their remaining eMeterai quota, indicating how many more digital stamps they can use.

<mark style="color:blue;">`GET`</mark> `/api/v1/emeterai/quota`

#### Headers

| Name                                            | Type   | Description                                  |
| ----------------------------------------------- | ------ | -------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer \<Token received from Authentication> |
| X-PARTNER-ID<mark style="color:red;">\*</mark>  | String | client\_id                                   |

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

```json
{
    "responseCode": 200,
    "message": "Success",
    "refNum": "1703820925",
    "data": {
        "quota": "100",
        "account": "1699856766"
    }
}
```

{% endtab %}

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

{% endtab %}

{% tab title="400: Bad Request " %}

```json
{
    "responseCode": 23,
    "message": "X-PARTNER-ID Header Empty",
    "refNum": null,
    "refund_status": "NOT_REFUNDED",
    "data": null
}
```

{% endtab %}
{% endtabs %}
