Patreon Creator Download
Export a Patreon creator's posts and accessible media as a ZIP file. Managed Patreon auth is optional and recommended for paid content your account can view.
POST
/v1/patreon/creator-download Request Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| creator | body | string | Yes | Patreon creator username, vanity path, or creator URL to export as a ZIP file. |
| maxPosts | body | number | No | Optional maximum number of posts to include. Omit this field to attempt the full creator export. |
Response Structure
Async kickoff response
Polled run result response
Sync response
Declared output schema
Code Examples
Async + polling
RUN=$(curl -s -X POST "https://api.browsable.app/v1/patreon/creator-download" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"creator":"technologyconnections","maxPosts":1000}')
RUN_ID=$(echo "$RUN" | jq -r '.run_id')
while true; do
RESULT=$(curl -s -H "Authorization: Bearer YOUR_API_KEY" "https://api.browsable.app/v1/runs/$RUN_ID")
STATUS=$(echo "$RESULT" | jq -r '.run_status')
if [ "$STATUS" = "succeeded" ] || [ "$STATUS" = "failed" ]; then
echo "$RESULT"
break
fi
sleep 2
doneSync
curl -X POST "https://api.browsable.app/v1/patreon/creator-download" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"creator":"technologyconnections","maxPosts":1000,"_run":{"async":false}}'