Endpoint Playground
Test Crawlora's Substack User Connections 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/user/connections?user_id=<user_id>&list=followers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| user_id | integer | Yes | Numeric user id from /substack/user | |
| list | string | No | followers | Which list to read |
{
"code": 200,
"data": {
"user_id": 49731969,
"list": "followers",
"name": "Followers",
"users": [
{
"id": 1233587,
"handle": "bodytype",
"name": "Mikala Jamison",
"url": "https://substack.com/@bodytype",
"subscribers": {
"total": 61000,
"total_hidden": false,
"paid_rough": "Thousands"
}
}
]
},
"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 of a user's public connection lists. Each entry is a full profile in the same shape as /substack/user, subscriber signals included. user_id is the numeric id returned by /substack/user. The upstream returns a bounded preview of each list rather than the complete membership.
{
"code": 200,
"data": {
"user_id": 49731969,
"list": "followers",
"name": "Followers",
"users": [
{
"id": 1233587,
"handle": "bodytype",
"name": "Mikala Jamison",
"url": "https://substack.com/@bodytype",
"subscribers": {
"total": 61000,
"total_hidden": false,
"paid_rough": "Thousands"
}
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/user/connections?user_id=<user_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"