Endpoint Playground
Test Crawlora's Patreon Explore Creators 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/explore?topic=podcasts_and_shows" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| topic | string | Yes | podcasts_and_shows | Public Explore topic. Allowed values: podcasts_and_shows, visual_arts, tabletop_games, video_games, music, lifestyle, writing, handicrafts, apps_and_software, social_impact |
{
"code": 200,
"data": {
"topic": "podcasts_and_shows",
"sections": [
{
"type": "popular-campaigns",
"title": "Top creators",
"creators": [
{
"id": "4270549",
"name": "Reckless Ben",
"creation_name": "creating YouTube videos",
"url": "https://www.patreon.com/RecklessBen",
"is_nsfw": false
}
]
}
]
},
"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 Patreon's public curated creator shelves for one topic: Top creators, Popular this week, and New on Patreon. topic must be one of podcasts_and_shows, visual_arts, tabletop_games, video_games, music, lifestyle, writing, handicrafts, apps_and_software, social_impact.
{
"code": 200,
"data": {
"topic": "podcasts_and_shows",
"sections": [
{
"type": "popular-campaigns",
"title": "Top creators",
"creators": [
{
"id": "4270549",
"name": "Reckless Ben",
"creation_name": "creating YouTube videos",
"url": "https://www.patreon.com/RecklessBen",
"is_nsfw": false
}
]
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/patreon/explore?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"