# Me

GET /v1/organizations/me - who this account token belongs to and what it may do.

*ProxyLLM docs · https://proxyllm.ai/docs/api/me*

```
GET /v1/organizations/me
```

Auth: **[account token](/docs/api/authentication)**, `rk_` or `sk_`. Any token can introspect itself; agents use this to find out what they're allowed to do before trying it.

```bash
curl https://api.proxyllm.ai/v1/organizations/me \
  -H "Authorization: Bearer rk_your_readonly_token"
```

## Response

```json
{
  "id": "5e2f8c1a-...",
  "email": "you@example.com",
  "plan": "pro",
  "token_scope": "read",
  "token_label": "Usage dashboard bot"
}
```

| Field         | Type                       | Notes                                                                               |
| ------------- | -------------------------- | ----------------------------------------------------------------------------------- |
| `id`          | string                     | Your ProxyLLM user id.                                                              |
| `email`       | string or null             | Account email.                                                                      |
| `plan`        | `"free"` or `"pro"`        | Membership tier.                                                                    |
| `token_scope` | `"read"` or `"read_write"` | What this token may do. `read` tokens get `403 read_only_token` on write endpoints. |
| `token_label` | string or null             | The name given to the token in Settings.                                            |

## Errors

| Status | Code                    | When                      |
| ------ | ----------------------- | ------------------------- |
| 401    | (none)                  | No token sent.            |
| 401    | `invalid_account_token` | Unknown or revoked token. |
| 405    | `method_not_allowed`    | Method other than GET.    |
