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

# Autenticación

> Cómo autenticar tus solicitudes a la API de Opptima con tu API Key.

Todas las solicitudes requieren un **API Key** que debes incluir en el header `Authorization` como Bearer token.

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.ckpnd.com:5001/v1/email \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json"
  ```

  ```http Header theme={null}
  Authorization: Bearer YOUR_API_KEY
  ```
</CodeGroup>

<Note>
  Para obtener tu API Key, ve a [Settings](https://app.opptima.com/es/settings) en tu cuenta de Opptima.
</Note>

<Warning>
  Nunca compartas tu API Key ni la incluyas en código público. Trátala como una contraseña.
</Warning>
