# Retrieve User's Data

Interact with this API using a `GET` request only with your Token in headers. It informs you about the user's authentication status. If authenticated, the user's data is returned.

**API Endpoint**

The following endpoint/URL should be used in order to access this API:

```
https://app.stammer.ai/en/user/api/v1/me/
```

**Request Headers**

The API must have the following request headers:

```
Content-Type: application/json
Authorization: Token <Your-API-Token>
```

**Query Parameters**

The API accepts the following query parameters:

* `email` (Type: Email, Required)
  * Email address of the SubAccount.
  * Must be a valid email format.

**Response Example**

Here's an example of the response:

```json
{
    "message": "You are successfully logged in.",
    "data": {
        "id": 1241,
        "email": "john@domain.com",
        "first_name": "John",
        "last_name": "Smith"
    }
}
```

Learn More - <https://app.stammer.ai/en/api-docs/me/>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.stammer.ai/stammer.ai-docs/white-label/white-label-api/user/retrieve-users-data.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
