> For the complete documentation index, see [llms.txt](https://docs.getlynx.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.getlynx.io/clevver-api/public-methods/user.md).

# User

## Retrieve information about your user account

<mark style="color:blue;">`GET`</mark> `https://clevver.org/api/user`

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

````json
```json
{
    "data": {
        "id": 1,
        "email_address": "your-email@example.com",
        "max_file_size": 104857600
    }
}
```
````

{% endtab %}
{% endtabs %}

## Retrieve information about your account's quota

<mark style="color:blue;">`GET`</mark> `https://clevver.org/api/userr/quota`

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

```json
{
    "status": "sucess",
    "data": {
        "total": 2097152,
        "used": 429380,
        "available": 1667772,
        "percentage_used": 20.47443389892578
    }
}
```

{% endtab %}
{% endtabs %}
