# Regenerate Guest Bio

> 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/regenerate-guest-bio.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/regenerate-guest-bio
> 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`

---

#### POST /api/v1/guest-profiles/:guestProfileId/regenerate-bio
**Regenerate Guest Bio**

Use AI to regenerate the guest bio based on all available profile data including documents, LinkedIn data, and website content. Returns the generated bio fields.

```bash
curl -X POST "http://localhost:4000/api/v1/guest-profiles/example-guest-profile-id/regenerate-bio" \
  -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
}
```

**Response schema:**
```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {
        "result": {
          "type": "object",
          "properties": {
            "answer": {
              "type": "object",
              "properties": {
                "shortBio": {
                  "type": "string"
                },
                "longBio": {
                  "type": "string"
                },
                "goals": {},
                "thingsToAvoid": {},
                "areasOfExpertise": {},
                "topicsToDiscuss": {}
              },
              "required": [
                "shortBio",
                "longBio",
                "goals",
                "thingsToAvoid",
                "areasOfExpertise",
                "topicsToDiscuss"
              ],
              "additionalProperties": false
            }
          },
          "required": [
            "answer"
          ],
          "additionalProperties": false
        }
      },
      "required": [
        "result"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "status",
    "data"
  ],
  "additionalProperties": false
}
```

---

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