Endpoint Playground
Test Crawlora's Patreon Membership Tiers 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/tiers?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle | string | Yes | Creator page handle |
{
"code": 200,
"data": {
"creator_id": "8655479",
"handle": "CachyOS",
"tiers": [
{
"id": "17218833",
"title": "Supporter",
"amount_cents": 500,
"currency": "EUR",
"benefits": [
{
"title": "Project updates"
}
]
}
]
},
"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 published membership tiers and their published benefits from a creator's public Patreon page. It excludes member-only entitlements, tier capacity, and member counts. handle is the creator's page handle, e.g. CachyOS for patreon.com/CachyOS.
{
"code": 200,
"data": {
"creator_id": "8655479",
"handle": "CachyOS",
"tiers": [
{
"id": "17218833",
"title": "Supporter",
"amount_cents": 500,
"currency": "EUR",
"benefits": [
{
"title": "Project updates"
}
]
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/patreon/creator/tiers?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"