Endpoint Playground
Test Crawlora's Slate section headlines 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/headlines?section=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| section | string | No | all | Slate feed section |
{
"code": 200,
"msg": "OK",
"data": {
"section": "news-and-politics",
"feed_url": "https://slate.com/feeds/news-and-politics.rss",
"items": [
{
"id": "cmu7jp3l9000jy0ktzuk0yql1",
"title": "Example Slate story",
"url": "https://slate.com/news-and-politics/2026/09/example.html",
"summary": "A short summary.",
"published_at": "2026-09-22T09:45:00Z",
"author": "Example Reporter",
"categories": [
"Politics"
],
"image_url": "https://compote.slate.com/images/example.jpg"
}
]
}
}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 current Slate article-card metadata from one public RSS feed. section must be one of the values returned by slate-categories.
{
"code": 200,
"msg": "OK",
"data": {
"section": "news-and-politics",
"feed_url": "https://slate.com/feeds/news-and-politics.rss",
"items": [
{
"id": "cmu7jp3l9000jy0ktzuk0yql1",
"title": "Example Slate story",
"url": "https://slate.com/news-and-politics/2026/09/example.html",
"summary": "A short summary.",
"published_at": "2026-09-22T09:45:00Z",
"author": "Example Reporter",
"categories": [
"Politics"
],
"image_url": "https://compote.slate.com/images/example.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/slate/headlines" \
-H "x-api-key: $CRAWLORA_API_KEY"