Endpoint Playground
Test Crawlora's Get one public Substack post 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/post?publication=<publication>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publication | string | Yes | Publication subdomain or custom domain | |
| slug | string | Yes | Post slug, the trailing path segment of the post URL |
{
"code": 200,
"data": {
"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": 164,
"wordcount": 3953,
"bylines": [
{
"id": 134996999,
"name": "Max Kan",
"handle": "maxkan",
"url": "https://substack.com/@maxkan"
}
]
},
"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 public post with the extended metadata the archive listing omits, including word count, every credited byline, and podcast audio details where the post has them. Post bodies are not returned.
{
"code": 200,
"data": {
"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": 164,
"wordcount": 3953,
"bylines": [
{
"id": 134996999,
"name": "Max Kan",
"handle": "maxkan",
"url": "https://substack.com/@maxkan"
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/post?publication=<publication>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"