---
title: "Conta · Referência REST"
description: "As rotas de Conta. Todo corpo é JSON, e o erro sempre volta como um objeto com código e mensagem."
lang: "pt-BR"
canonical: "https://zaiped.com/developers/docs/reference/account"
alternate: "https://zaiped.com/en/developers/docs/reference/account"
---

# Conta · Referência REST

## 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.

**Resposta (object)**

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

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