---
title: "Account · REST reference"
description: "The Account routes. Every body is JSON, and an error always comes back as an object with a code and a message."
lang: "en-US"
canonical: "https://zaiped.com/en/developers/docs/reference/account"
alternate: "https://zaiped.com/developers/docs/reference/account"
---

# Account · REST reference

## GET /v1/me

Get the calling account

Returns the account behind the API key: whether it can call the API right now (an active subscription, or expired), the subscription mirror and how many numbers are active.

**Response (object)**

- `id` · string (Required): Zaiped id (users)
- `entitlement` · "active" | "expired" (Required)
- `subscription` · object (Required)
- `activeNumbers` · number (Required)

```
curl -X GET "https://zaiped.com/v1/me" \
  -H "Authorization: Bearer zp_..."
```