# Identify the calling API key

> Returns metadata about the workspace and key behind the request.

Source: https://www.hey.support/docs/api/account/get-current-key

---

<ApiEndpoint method="GET" path="/me" />

Use it to verify credentials and to discover your workspace id before calling other endpoints — it is the cheapest way to test that a key works, and integrations such as Zapier call it to label connections.

## Response `200`

<TypeTable
  type={{
  "team_id": { type: "string", description: "", required: true },
  "team_name": { type: "string", description: "", required: false },
  "key_name": { type: "string", description: "", required: true },
  "key_prefix": { type: "string", description: "", required: true }
}}
/>

### Errors

* `401` — Missing or invalid API key
* `429` — Rate limit exceeded

Every error shares [one envelope](/docs/api/errors).

## Example

```bash
curl https://www.hey.support/api/v1/me \
  -H 'Authorization: Bearer hs_live_…'
```
