Endpoint Playground
Test Crawlora's Slate public feed sections 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/slate/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"slug": "news-and-politics",
"name": "News & Politics",
"path": "/news-and-politics",
"url": "https://slate.com/news-and-politics",
"feed_url": "https://slate.com/feeds/news-and-politics.rss"
}
]
}
}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.
Lists the exact Slate section values accepted by slate-headlines. The set includes all, news-and-politics, culture, technology, business, life, and advice; subsection navigation pages are not RSS feeds and are intentionally not accepted by slate-headlines.
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"slug": "news-and-politics",
"name": "News & Politics",
"path": "/news-and-politics",
"url": "https://slate.com/news-and-politics",
"feed_url": "https://slate.com/feeds/news-and-politics.rss"
}
]
}
}curl "https://api.crawlora.net/api/v1/slate/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"