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

# Quick Start

> De cuenta vacía a usuario verificado, plan suscrito y primer mensaje — sin abrir el panel.

<Tip>
  Este guía lleva de **cuenta vacía al primer envío**. Todo por API: registro, OTP, tarjeta, plan y mensaje.
</Tip>

## 1. Registrar cuenta

```bash theme={null}
curl -X POST https://api.notifique.dev/v1/platform/register \
  -H "Content-Type: application/json" \
  -d '{
    "email": "dev@empresa.com",
    "password": "SenhaSegura123!",
    "name": "Maria Dev",
    "phone": "5511999999999",
    "onboardingSurvey": {
      "rolePersona": "developer",
      "primaryGoal": "api",
      "plannedChannels": ["whatsapp", "email", "sms"]
    }
  }'
```

## 2. Verificar teléfono

```bash theme={null}
curl -X POST https://api.notifique.dev/v1/platform/verify \
  -H "Content-Type: application/json" \
  -d '{
    "verificationToken": "<token del paso 1>",
    "code": "123456"
  }'
```

**Guarda la `apiKey`** — no se muestra de nuevo.

## 3. Enviar primer mensaje

```bash theme={null}
curl -X POST https://api.notifique.dev/v1/email/messages \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "to": ["cliente@email.com"], "subject": "Hola", "text": "Teste" }'
```

Enums de onboarding: [Registro y verificación](/es/platform-api/como-funciona/registro-e-verificacao).
