Endpoint Playground
Test Crawlora's Patreon Podcast RSS API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/patreon/rss?campaign_id=<campaign_id>&show_id=<show_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| campaign_id | string | Yes | Numeric Patreon campaign id | |
| show_id | string | Yes | Numeric Patreon show id |
{
"code": 200,
"data": {
"campaign_id": "80117",
"show_id": "1322380",
"title": "The Duckfeed Podcast",
"language": "en-us",
"episodes": [
{
"guid": "episode-1",
"title": "Episode one",
"duration": "1:02:03",
"enclosure_url": "https://media.example/episode.mp3",
"enclosure_type": "audio/mpeg"
}
]
},
"msg": "success"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns public podcast channel metadata and episodes from Patreon's canonical public RSS feed. campaign_id and show_id are the numeric IDs in the public feed URL. Private member feeds and authentication URLs are not supported.
{
"code": 200,
"data": {
"campaign_id": "80117",
"show_id": "1322380",
"title": "The Duckfeed Podcast",
"language": "en-us",
"episodes": [
{
"guid": "episode-1",
"title": "Episode one",
"duration": "1:02:03",
"enclosure_url": "https://media.example/episode.mp3",
"enclosure_type": "audio/mpeg"
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/patreon/rss?campaign_id=<campaign_id>&show_id=<show_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"