# Account

For convenience, we also provide API endpoint to retrieve your account information

## Account information

<mark style="color:blue;">`GET`</mark> `https://api.usestencil.com/v1/account`

#### Headers

<table><thead><tr><th width="132.76300048828125">Name</th><th width="137.0738525390625">Type</th><th>Description</th></tr></thead><tbody><tr><td>Authorization</td><td>string</td><td>Must contain `Bearer &#x3C;API-Secret-Key>`.</td></tr></tbody></table>

{% tabs %}
{% tab title="200 Successful response upon a valid API key. current\_projectdescribes the scope of the API key." %}

```javascript
{
    "created_at": "2021-06-17T12:05:31",
    "current_project": {
        "description": "Steal the cake",
        "name": "Project 1"
    },
    "current_usage": 0,
    "email": "one@stencil.com",
    "id": "76baa621-283a-4b55-8236-3938e1cbf771",
    "limit_usage": 2000,
    "renewal_date": "2021-07-17T12:27:08Z"
}
```

{% endtab %}

{% tab title="401 Invalid API key will return 401 status" %}

```javascript
"Unauthorized"
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
This API endpoint is also useful when integrating with Integromat to check for a valid account. `200` status response is only returned when API key is valid.
{% endhint %}
