Endpoint Playground
Test Crawlora's Guardian topic archive 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/guardian/topic?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| topic | string | Yes | Guardian tag or section slug | |
| page | integer | No | 1-based archive page, defaults to 1 |
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"pagination": {
"has_next": true,
"next_page": 1,
"page": 1
},
"topic": "sample"
},
"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 paginated public Guardian topic or category archive. topic is a Guardian tag or section slug and page defaults to 1.
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"pagination": {
"has_next": true,
"next_page": 1,
"page": 1
},
"topic": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/guardian/topic?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"