Endpoint Playground
Test Crawlora's Substack Publication Posts 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/posts?publication=<publication>&sort=new" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publication | string | Yes | Publication subdomain or custom domain | |
| search | string | No | Full-text filter over the publication's own posts | |
| sort | string | No | new | Archive ordering |
| offset | integer | No | Zero-based row offset | |
| limit | integer | No | Rows per page, 1-50 |
{
"code": 200,
"data": {
"publication": "semianalysis.substack.com",
"sort": "new",
"offset": 0,
"limit": 12,
"posts": [
{
"id": 213613469,
"title": "Korea's Trillion-Dollar Sovereign AI Investment",
"slug": "koreas-trillion-dollar-sovereign",
"url": "https://newsletter.semianalysis.com/p/koreas-trillion-dollar-sovereign",
"type": "newsletter",
"audience": "only_paid",
"published_at": "2026-09-01T20:14:32.560Z",
"paywalled": true,
"comment_count": 1,
"reaction_count": 162
}
]
},
"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 a publication's public post archive with title, subtitle, canonical URL, publish date, engagement counts, and whether each post is paywalled. search filters the publication's own posts full-text; a query with no matches returns an empty list rather than the unfiltered archive.
{
"code": 200,
"data": {
"publication": "semianalysis.substack.com",
"sort": "new",
"offset": 0,
"limit": 12,
"posts": [
{
"id": 213613469,
"title": "Korea's Trillion-Dollar Sovereign AI Investment",
"slug": "koreas-trillion-dollar-sovereign",
"url": "https://newsletter.semianalysis.com/p/koreas-trillion-dollar-sovereign",
"type": "newsletter",
"audience": "only_paid",
"published_at": "2026-09-01T20:14:32.560Z",
"paywalled": true,
"comment_count": 1,
"reaction_count": 162
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/publication/posts?publication=<publication>" \
-H "x-api-key: $CRAWLORA_API_KEY"