> ## 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.

# Registro de cuenta

> Crea una nueva cuenta de usuario.

**Autenticación:** Ninguna

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

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

  ```json Response 200 theme={null}
  {
    "access_token": "eyJhbGciOiJIUzI1NiIs...",
    "refresh_token": "eyJhbGciOiJIUzI1NiIs...",
    "expires_in": 3600,
    "user": { "id": "usr_abc123", "email": "usuario@empresa.cl", "nombre": "Juan Perez" }
  }
  ```
</CodeGroup>

| Código | Descripción                           |
| ------ | ------------------------------------- |
| `400`  | Datos inválidos o email ya registrado |
| `429`  | Demasiados intentos                   |
