# Download Guest Profile

> Pod Engine API endpoint reference, optimized for LLM consumption.
> Auto-generated from the source-of-truth endpoint registry.
>
> Category: Guest Profiles
> Source: https://www.podengine.ai/api-docs/download-guest-profile.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/download-guest-profile
> Full API reference (all endpoints): https://www.podengine.ai/api-docs/llms.txt

**Base URL:** `http://localhost:4000`
**Auth:** Requires a Bearer token: `Authorization: Bearer YOUR_API_KEY`

---

#### GET /api/v1/guest-profiles/:guestProfileId/download
**Download Guest Profile**

Download a guest profile as a document. Supported formats are HTML, DOCX, and PDF.

```bash
curl -X GET "http://localhost:4000/api/v1/guest-profiles/example-guest-profile-id/download" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

**Path parameters schema:**
```json
{
  "type": "object",
  "properties": {
    "guestProfileId": {
      "type": "string",
      "description": "The guest profile ID"
    }
  },
  "required": [
    "guestProfileId"
  ],
  "additionalProperties": false
}
```

**Query schema:**
```json
{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "html",
        "docx",
        "pdf"
      ],
      "description": "The format to download the guest profile in. Supported formats: html, docx, pdf"
    }
  },
  "required": [
    "format"
  ],
  "additionalProperties": false
}
```

**Response schema:**
```json
{
  "description": "Binary file download — response body is the raw file (no JSON schema).",
  "contentType": "application/octet-stream"
}
```

---

## See also

- All endpoints in one file: https://www.podengine.ai/api-docs/llms.txt
- Full reference with every schema inlined: https://www.podengine.ai/api-docs/llms-full.txt
- OpenAPI 3.1 spec: https://www.podengine.ai/api-docs/openapi.json
- Get an API key: https://www.podengine.ai/get-started
- Support: support@podengine.ai
