> For the complete documentation index, see [llms.txt](https://developers.meldapi.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.meldapi.io/check-authentication.md).

# Authentication Check

## Authentication Check

<mark style="color:blue;">`GET`</mark> `https://api.meldapi.io/api/public/v1/auth/check`

This endpoint allows you to check if your API token is working.

#### Headers

| Name          | Type   | Description          |
| ------------- | ------ | -------------------- |
| Authorization | string | Bearer \<API\_TOKEN> |

{% tabs %}
{% tab title="200 Authentication successfull." %}

```
{  
  "id:": 1,
  "email": "xxxx@test.com",
  "teams": [
    {
      "id": 1,
      "name": "Team Number 1"
    }
  ]
}
```

{% endtab %}

{% tab title="401 API Token is invalid" %}

```
{
    "errors": [
        {
            "message": "E_UNAUTHORIZED_ACCESS: Unauthorized access"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
