Endpoint Playground
Test Crawlora's Substack Note Restacks 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/restacks?note_id=<note_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| note_id | integer | Yes | Numeric Note id | |
| cursor | string | No | Opaque cursor from a previous response's next_cursor |
{
"code": 200,
"data": {
"note_id": 316240438,
"next_cursor": "2026-08-17T13:33:40.134Z",
"has_more": true,
"restacks": [
{
"id": 327128782,
"body": "YES 😢",
"author_name": "Kate Freeth",
"published_at": "2026-09-01T07:40:45.487Z",
"reaction_count": 0,
"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 page of the Notes that restacked a given Note, each in the same shape as the single-Note endpoint. A restack may carry its own commentary in `body` or be a bare reshare with an empty body. Pagination is cursor-based.
{
"code": 200,
"data": {
"note_id": 316240438,
"next_cursor": "2026-08-17T13:33:40.134Z",
"has_more": true,
"restacks": [
{
"id": 327128782,
"body": "YES 😢",
"author_name": "Kate Freeth",
"published_at": "2026-09-01T07:40:45.487Z",
"reaction_count": 0,
"is_ai_generated": false
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/note/restacks?note_id=<note_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"