# User Info

## User Info /v2/users/me

### General

Fetches the current user's information, including subscription status. This endpoint is useful for verifying that your API key is valid and referencing your own `userId`.

### Endpoints

<mark style="color:blue;">**GET**</mark> `/v2/users/me`

#### Response Keys

| Name                 | Type     | Description                                                     |
| -------------------- | -------- | --------------------------------------------------------------- |
| `id`                 | `string` | The unique ID of the user.                                      |
| `subscriptionStatus` | `string` | The user's subscription status (e.g., `active`, `generic_pro`). |
| `apiKey`             | `string` | **\[Sensitive]** The user's API key.                            |

***

## Examples

### Get verification info

```http
GET https://backend.blotato.com/v2/users/me HTTP/1.1
blotato-api-key: blt_...
```

**Response 200 OK**

```json
{
  "id": "e931cdad-0c31-4191-8930-745a76c8e31a",
  "subscriptionStatus": "active_pro",
  "apiKey": "blt_..."
}
```


---

# 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://help.blotato.com/api/accounts/users.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.
