patreon.com APIwww.patreon.com ↗
Search Patreon creators and retrieve membership tier pricing, patron counts, campaign metadata, and social connections via two structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/5f02ca75-a840-4fa8-bd24-66c37c69ec87/search_creators?limit=5&query=podcast' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for creators on Patreon by keyword. Returns creator names, patron counts, descriptions, and campaign IDs that can be used with get_creator_details for tier pricing.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-indexed) |
| limit | integer | Maximum number of results to return |
| queryrequired | string | Search keyword to find creators |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"query": "string, the search keyword used",
"results": "array of creator objects with campaign_id, name, creator_name, creation_name, patron_count, total_posts, is_nsfw, url, avatar_url",
"total_pages": "integer, total number of pages available",
"total_results": "integer, total number of matching creators"
},
"sample": {
"data": {
"page": 1,
"query": "podcast",
"results": [
{
"url": "https://www.patreon.com/MSsecretpod",
"name": "Matt and Shane's Secret Podcast",
"is_nsfw": false,
"avatar_url": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/1055672/f8d420f61e014aecb059ad74a4d33eb2/eyJ3IjoyNDB9/1.png?token-time=2145916800&token-hash=2YYycwansjfyOIAGob_QQHs6u-hiMuGs8WG-wVolyNo%3D",
"campaign_id": "1055672",
"total_posts": 966,
"creator_name": "Matt and Shane's Secret Podcast",
"patron_count": 235315,
"creation_name": "Creating Hot Casts"
}
],
"total_pages": 9,
"total_results": 176
},
"status": "success"
}
}About the patreon.com API
The Patreon API exposes two endpoints — search_creators and get_creator_details — covering creator profiles, membership tier pricing in cents, patron counts, and campaign metadata. A single search query returns up to paginated results with campaign IDs you can feed directly into get_creator_details to pull tier structures, billing currency, NSFW flags, and the creator's linked social accounts.
Search and Discovery
search_creators accepts a query string along with optional page and limit parameters. Each result object includes campaign_id, name, creator_name, creation_name, patron_count, total_posts, is_nsfw, url, and avatar_url. The response also surfaces total_results and total_pages, so you can paginate through all matching creators systematically.
Campaign and Tier Details
get_creator_details takes a campaign_id (obtained from search_creators results) and returns the full campaign record. The tiers array contains objects with id, title, amount_cents, amount, currency, description, patron_count, is_free_tier, published, and remaining fields — giving you both human-readable and machine-readable pricing per membership level. The creator object includes user_id, full_name, vanity, image_url, url, and social_connections for linked external accounts.
Campaign Metadata
Beyond tiers, get_creator_details returns summary (the campaign description), created_at (ISO 8601 timestamp), is_monthly (billing cadence), currency (the payment currency code), and is_nsfw. The url field gives the canonical Patreon campaign address. All monetary amounts are returned in both amount_cents (integer) and amount (formatted string), which simplifies display without additional conversion logic.
- Track patron count changes over time across a set of Patreon campaign IDs
- Compare membership tier pricing and structure across creators in the same niche
- Build a directory of Patreon creators filtered by NSFW flag or patron count threshold
- Extract social connection data from creator profiles to cross-reference accounts on other platforms
- Aggregate tier descriptions and prices for creator economy research or benchmarking
- Monitor when new tiers are published or existing tiers change price on a given campaign
- Identify free-tier offerings (is_free_tier) across a search result set for audience-building analysis
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Patreon have an official developer API?+
What does get_creator_details return for membership tiers?+
tiers array where each object includes id, title, amount_cents, amount, currency, description, patron_count, is_free_tier, published, and remaining. The amount_cents field is an integer (e.g. 500 for $5.00) and amount is a pre-formatted string. Only published tiers visible on the public campaign page are included.Does the API return individual patron identities or pledge histories?+
How does pagination work in search_creators?+
page parameter is 1-indexed. The response includes total_pages and total_results so you can iterate through all results. The limit parameter controls how many results are returned per page. If total_pages is greater than 1, increment page until you have collected all matching campaigns.Can I retrieve posts or content from a creator's campaign feed?+
total_posts summary field, and comments are not returned. You can fork this API on Parse and revise it to add an endpoint that retrieves individual post data for a given campaign.