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

# Autenticación

> Documentación de la API de Verifica

## Autenticación

Todos los endpoints de la API se autentican usando tokens Bearer con formato JWT.

```json theme={null}
"security": [
  {
    "bearerAuth": []
  }
]
```

Incluye tu token API en el header Authorization:

```
Authorization: Bearer YOUR_API_TOKEN
```

## Dónde obtener tu API token

El origen de tu API token depende del servicio que vayas a consumir:

| Servicios                                       | Plataforma para obtener el API token                 |
| ----------------------------------------------- | ---------------------------------------------------- |
| Consulta DNI, Consulta RUC y Consulta Vehicular | [hub.verifica.id](https://hub.verifica.id)           |
| Firma, KYC y Reporte AML                        | [prod-hub.verifica.id](https://prod-hub.verifica.id) |

<Note>
  Estamos unificando las plataformas para tener un único modo de obtener tu API key. Tu API key actual seguirá funcionando con normalidad.
</Note>
