Endpoint Playground
Test Crawlora's WIRED 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/wired/headlines?section=business" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| section | string | Yes | business | WIRED section slug from /wired/sections |
{
"code": 200,
"msg": "OK",
"data": {
"section": "security",
"items": [
{
"title": "Example headline",
"url": "https://www.wired.com/story/example-headline/",
"summary": "A short summary of the story.",
"published_at": "2026-09-23T05:00:00Z",
"author": "Example Author",
"image_url": "https://media.wired.com/photos/example/master/pass/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 the current public RSS feed for one WIRED section: each story's title, canonical URL, summary, author, publication time, and lead image. Section must be one of the slugs returned by /wired/sections: `business`, `culture`, `gear`, `politics`, `science`, `security`.
{
"code": 200,
"msg": "OK",
"data": {
"section": "security",
"items": [
{
"title": "Example headline",
"url": "https://www.wired.com/story/example-headline/",
"summary": "A short summary of the story.",
"published_at": "2026-09-23T05:00:00Z",
"author": "Example Author",
"image_url": "https://media.wired.com/photos/example/master/pass/example.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/wired/headlines?section=<section>" \
-H "x-api-key: $CRAWLORA_API_KEY"