Endpoint Playground
Test Crawlora's Get one public Substack Note 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/note?note_id=<note_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| note_id | integer | Yes | Numeric Note id |
{
"code": 200,
"data": {
"id": 316240438,
"body": "If only the men in the Epstein files were accused of...",
"author_id": 138271663,
"author_name": "Jameela Jamil",
"author_handle": "jameelajamil",
"author_url": "https://substack.com/@jameelajamil",
"url": "https://substack.com/@jameelajamil/note/c-316240438",
"published_at": "2026-08-16T22:35:15.413Z",
"reaction_count": 12846,
"restack_count": 1139,
"reply_count": 129,
"reactions": {
"❤": 12846
},
"is_ai_generated": false
},
"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 Note with its author, engagement counts, and the post it links to when it has one. Notes are Substack's short-form social posts. note_id is the numeric id from a Note URL: in `/@handle/note/c-316240438` it is `316240438`.
{
"code": 200,
"data": {
"id": 316240438,
"body": "If only the men in the Epstein files were accused of...",
"author_id": 138271663,
"author_name": "Jameela Jamil",
"author_handle": "jameelajamil",
"author_url": "https://substack.com/@jameelajamil",
"url": "https://substack.com/@jameelajamil/note/c-316240438",
"published_at": "2026-08-16T22:35:15.413Z",
"reaction_count": 12846,
"restack_count": 1139,
"reply_count": 129,
"reactions": {
"❤": 12846
},
"is_ai_generated": false
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/note?note_id=<note_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"