Endpoint Playground
Test Crawlora's Public Patreon creator profile 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/creator?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle | string | Yes | Creator page handle |
{
"code": 200,
"data": {
"id": "8655479",
"handle": "CachyOS",
"name": "CachyOS",
"summary": "Optimized Arch Linux based distribution",
"url": "https://www.patreon.com/CachyOS",
"currency": "EUR",
"patron_count": 2925,
"paid_member_count": 1101,
"pledge_sum_cents": 451968,
"creation_count": 5,
"social_links": [
{
"platform": "twitter",
"label": "CachyOS",
"url": "https://twitter.com/CachyOS"
}
],
"offers_paid_membership": true
},
"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 profile metadata from a creator's Patreon page: creator identity, summary, images, membership and creation counts, public earnings snapshot, membership/RSS availability flags, and public external profile links. handle is the creator's page handle, e.g. CachyOS for patreon.com/CachyOS.
{
"code": 200,
"data": {
"id": "8655479",
"handle": "CachyOS",
"name": "CachyOS",
"summary": "Optimized Arch Linux based distribution",
"url": "https://www.patreon.com/CachyOS",
"currency": "EUR",
"patron_count": 2925,
"paid_member_count": 1101,
"pledge_sum_cents": 451968,
"creation_count": 5,
"social_links": [
{
"platform": "twitter",
"label": "CachyOS",
"url": "https://twitter.com/CachyOS"
}
],
"offers_paid_membership": true
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/patreon/creator?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"