> ## Documentation Index
> Fetch the complete documentation index at: https://docs.waspytech.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account

> Obtener información de tu cuenta.

## GET /account

Devuelve la información de tu cuenta: nombre, slug y plan activo.

**Scope requerido:** `account:read`

### Request

```bash theme={null}
curl https://api.waspytech.com/api/v2/account \
  -H "Authorization: Bearer wspy_..."
```

### Response `200`

```json theme={null}
{
  "data": {
    "id": "tenant-uuid",
    "name": "Mi Tienda",
    "slug": "mi-tienda",
    "plan": "crece"
  },
  "meta": {
    "requestId": "..."
  }
}
```

### Campos

| Campo  | Tipo          | Descripción                                              |
| ------ | ------------- | -------------------------------------------------------- |
| `id`   | string (UUID) | ID único de la cuenta                                    |
| `name` | string        | Nombre de la cuenta                                      |
| `slug` | string        | Slug único                                               |
| `plan` | string        | Plan activo: `emprende`, `crece`, `escala`, `enterprise` |
