Endpoint Playground
Test Crawlora's Substack Publication Contributors 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/substack/publication/contributors?publication=<publication>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publication | string | Yes | Publication subdomain or custom domain | |
| page | integer | No | Zero-based page |
{
"code": 200,
"data": {
"publication": "www.thefp.com",
"page": 0,
"contributors": [
{
"id": 29561926,
"name": "Sergiu Klainerman",
"handle": "sergiuklainerman",
"bio": "Higgins professor of mathematics at Princeton University",
"url": "https://substack.com/@sergiuklainerman",
"is_byline_only": 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 one page of the writers credited on a publication, ranked as Substack ranks them. Rows include each writer's handle, profile URL, and bestseller badge tier, so a publication can be fanned out into individual /substack/user lookups. Large publications return several hundred contributors on the first page.
{
"code": 200,
"data": {
"publication": "www.thefp.com",
"page": 0,
"contributors": [
{
"id": 29561926,
"name": "Sergiu Klainerman",
"handle": "sergiuklainerman",
"bio": "Higgins professor of mathematics at Princeton University",
"url": "https://substack.com/@sergiuklainerman",
"is_byline_only": true
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/publication/contributors?publication=<publication>" \
-H "x-api-key: $CRAWLORA_API_KEY"