Endpoint Playground
Test Crawlora's Substack Publication Recs 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/publication/recommendations?publication_id=<publication_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publication_id | integer | Yes | Numeric publication id |
{
"code": 200,
"data": {
"publication_id": 6349492,
"recommendations": [
{
"id": 1421308,
"name": "Tarot Capital",
"subdomain": "tarotcapital",
"url": "https://tarotcapital.substack.com",
"subscribers": {
"total_hidden": true
},
"subscription": {
"plans": []
}
}
]
},
"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 the publications a given publication recommends to its own readers, as a publication-to-publication graph. Useful for discovering publications beyond the 675-per-category ceiling on /substack/category. publication_id is the numeric id returned by /substack/publication, /substack/category, or /substack/user.
{
"code": 200,
"data": {
"publication_id": 6349492,
"recommendations": [
{
"id": 1421308,
"name": "Tarot Capital",
"subdomain": "tarotcapital",
"url": "https://tarotcapital.substack.com",
"subscribers": {
"total_hidden": true
},
"subscription": {
"plans": []
}
}
]
},
"msg": "success"
}curl "https://api.crawlora.net/api/v1/substack/publication/recommendations?publication_id=<publication_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"