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

# Quickstart (Celular)

> Sequência mínima para começar a operar Celular Protegido.

# Quickstart (Celular)

## 1. Gerar token

```bash theme={null}
curl -X POST https://beta-jackson.safest.com.br/api/seguros/auth/token \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "abc123def456",
    "client_secret": "super-secret-value"
  }'
```

## 2. Criar transação

```bash theme={null}
curl -X POST https://beta-jackson.safest.com.br/api/seguros/seguro-celular/create \
  -H "Authorization: Bearer SEU_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "productId": 12,
    "channelLink": "parceiro-hub",
    "nameOrRazao": "Maria Souza",
    "cpfOrCnpj": "12345678909",
    "artisticName": "Maria",
    "email": "maria.souza@example.com",
    "phone": "11999999999",
    "musicalGenre": "Celular"
  }'
```

## 3. Consultar status

```bash theme={null}
GET /api/seguros/seguro-celular/status/{ticket}
```
