Endpoint Playground
Test Crawlora's List replies to a 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/replies?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": "eyJvZmZzZXQiOjgsInJlcXVlc3Rf...",
"has_more": true,
"more_count": 13,
"replies": [
{
"id": 317039537,
"body": "Explain please.",
"author_name": "Mrs Buttermore",
"published_at": "2026-08-17T02:11:04.882Z",
"reaction_count": 4,
"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 public replies to a Note, each in the same shape as /substack/note. Pagination is cursor-based: pass the previous response's next_cursor back as cursor.
{
"code": 200,
"data": {
"note_id": 316240438,
"next_cursor": "eyJvZmZzZXQiOjgsInJlcXVlc3Rf...",
"has_more": true,
"more_count": 13,
"replies": [
{
"id": 317039537,
"body": "Explain please.",
"author_name": "Mrs Buttermore",
"published_at": "2026-08-17T02:11:04.882Z",
"reaction_count": 4,
"is_ai_generated": false
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/note/replies?note_id=<note_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"