# Remove Podcast on Project

> Pod Engine API endpoint reference, optimized for LLM consumption.
> Auto-generated from the source-of-truth endpoint registry.
>
> Category: Projects
> Source: https://www.podengine.ai/api-docs/remove-podcast-from-project.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/remove-podcast-from-project
> 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`

---

#### DELETE /api/v1/projects/:projectSlug/podcasts/:listedPodcastId
**Remove Podcast on Project**

Remove a podcast from a project's list

```bash
curl -X DELETE "http://localhost:4000/api/v1/projects/example-project/podcasts/123" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

**Path parameters schema:**
```json
{
  "type": "object",
  "properties": {
    "projectSlug": {
      "type": "string"
    },
    "listedPodcastId": {
      "type": "string"
    }
  },
  "required": [
    "projectSlug",
    "listedPodcastId"
  ],
  "additionalProperties": false
}
```

**Response schema:**
```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK"
      ]
    },
    "data": {
      "type": "object",
      "properties": {
        "projectSlug": {
          "type": "string"
        },
        "listedPodcastId": {
          "type": "string"
        }
      },
      "required": [
        "projectSlug",
        "listedPodcastId"
      ],
      "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
