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

# Registro

> Signup en www.emite.do, API key, certificado P12 y rangos e-NCF.

Una empresa puede emitir cuando tiene API key, está activa, tiene P12 del ambiente y un rango e-NCF vigente.

## Signup

1. Abre [www.emite.do/signup](https://www.emite.do/signup).
2. Completa titular, RNC, razón social y ambiente inicial (`TesteCF` para integrar).
3. Copia la API key. Se muestra **una vez**.

`TesteCF` envía al sandbox oficial de la DGII. No es un mock.

## Verificar

```bash theme={null}
curl https://api.emite.do/api/v1/client/company \
  -H "X-API-Key: $EMITE_API_KEY"
```

Espera `is_active: true`, certificado del mismo ambiente y al menos un rango vigente.

```bash theme={null}
curl "https://api.emite.do/api/v1/client/sequences?active_only=true" \
  -H "X-API-Key: $EMITE_API_KEY"
```

El signup no crea rangos; `GET /api/v1/client/sequences` solo lista.

Siguiente: [Quickstart](/quickstart) o [autenticación](/guides/authentication).
