Endpoint Playground
Test Crawlora's Recent Reuters articles 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/reuters/articles" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | Results page, 100 items per page |
{
"code": 200,
"data": {
"items": [
{
"image_url": "https://example.com/resource",
"title": "sample",
"updated_at": "sample",
"url": "https://example.com/resource"
}
],
"page": 1
},
"msg": "OK"
}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 a page of recent Reuters articles: title, canonical URL, update time, and the lead image URL when available. The index covers the most recent 10,000 articles.
{
"code": 200,
"data": {
"items": [
{
"image_url": "https://example.com/resource",
"title": "sample",
"updated_at": "sample",
"url": "https://example.com/resource"
}
],
"page": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/reuters/articles" \
-H "x-api-key: $CRAWLORA_API_KEY"