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

# Login

> Inicia sesión con email y password.

**Autenticación:** Ninguna

| Campo      | Tipo   | Req. | Descripción       |
| ---------- | ------ | ---- | ----------------- |
| `email`    | string | Sí   | Email del usuario |
| `password` | string | Sí   | Contraseña        |

<CodeGroup>
  ```json Request theme={null}
  {
    "email": "usuario@empresa.cl",
    "password": "miPassword123!"
  }
  ```

  ```json Response 200 theme={null}
  {
    "access_token": "eyJhbGciOiJIUzI1NiIs...",
    "refresh_token": "eyJhbGciOiJIUzI1NiIs...",
    "expires_in": 3600
  }
  ```
</CodeGroup>

| Código | Descripción            |
| ------ | ---------------------- |
| `401`  | Credenciales inválidas |
| `429`  | Demasiados intentos    |
