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

# Autocompletar desde SII

> Obtiene datos del contribuyente desde el SII por RUT.

**Autenticación:** Bearer JWT

<CodeGroup>
  ```json Request theme={null}
  {
    "rut": "76.123.456-7"
  }
  ```

  ```json Response 200 theme={null}
  {
    "rut": "76.123.456-7",
    "razon_social": "MI EMPRESA SPA",
    "giro": "DESARROLLO DE SOFTWARE",
    "direccion": "AV PROVIDENCIA 1234",
    "comuna": "PROVIDENCIA",
    "actividades": [
      { "codigo": 620200, "descripcion": "CONSULTORIA EN INFORMATICA" }
    ]
  }
  ```
</CodeGroup>

| Código | Descripción                 |
| ------ | --------------------------- |
| `404`  | RUT no encontrado en el SII |
| `503`  | SII no disponible           |
