Endpoint Playground
Test Crawlora's WIRED news 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/news" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"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 WIRED's current public top-stories RSS feed: each story's title, canonical URL, summary, author, publication time, and lead image.
{
"code": 200,
"msg": "OK",
"data": {
"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/news" \
-H "x-api-key: $CRAWLORA_API_KEY"