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

# Obtener archivo generado

> Este extremo devuelve el contenido de un archivo llms.txt generado.

## GET /file/{siteId}

Este extremo devuelve el contenido del archivo `llms.txt` de un sitio. Es público y no requiere autenticación, de modo que puede incrustar la URL del archivo directamente en su sitio.

<Note>
  La respuesta incluye encabezados CORS (`Access-Control-Allow-Origin: *`) para acceso entre orígenes y se cachea durante 5 minutos.
</Note>

### Parámetros de ruta

<ParamField path="siteId" type="string" required>
  Identificador del sitio para el que se recupera el archivo.
</ParamField>

### Parámetros de consulta

<ParamField query="full" type="boolean" default="false">
  Si es `true`, devuelve la versión del archivo que incluye el contenido textual completo de cada página. Útil para contextos de IA.
</ParamField>

### Respuesta

La respuesta será el contenido en texto plano del archivo `llms.txt` con:

* Content-Type: `text/plain; charset=utf-8`
* Cache-Control: `public, max-age=300`

<RequestExample>
  ```bash cURL (Standard) theme={null}
  curl -X GET https://api.llmgenerator.com/api/v1/file/550e8400-e29b-41d4-a716-446655440000
  ```

  ```bash cURL (Full Text) theme={null}
  curl -X GET "https://api.llmgenerator.com/api/v1/file/550e8400-e29b-41d4-a716-446655440000?full=true"
  ```

  ```javascript JavaScript theme={null}
  // Fetch and display llms.txt content
  const response = await fetch(
    'https://api.llmgenerator.com/api/v1/file/550e8400-e29b-41d4-a716-446655440000'
  );
  const content = await response.text();
  console.log(content);
  ```
</RequestExample>

<ResponseExample>
  ```text Standard llms.txt theme={null}
  # Example Domain
  > An example domain for use in documentation and examples.

  ## Pages

  - [Home](https://example.com/): The main landing page for Example Domain.
  - [About](https://example.com/about): Learn more about Example Domain and its purpose.
  - [Contact](https://example.com/contact): Get in touch with the Example Domain team.
  ```

  ```text Full Text Version theme={null}
  # Example Domain
  > An example domain for use in documentation and examples.

  ## Pages

  ### Home
  URL: https://example.com/

  Welcome to Example Domain. This domain is for use in illustrative examples in documents...

  ---

  ### About
  URL: https://example.com/about

  Example Domain was established to provide a safe space for documentation examples...
  ```
</ResponseExample>
