Endpoint Playground
Test Crawlora's Globe and Mail 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/globeandmail/headlines?section=canada" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| section | string | Yes | canada | Globe and Mail section slug from /globeandmail/sections |
{
"code": 200,
"msg": "OK",
"data": {
"section": "canada",
"items": [
{
"title": "Example headline",
"url": "https://www.theglobeandmail.com/canada/article-example-headline/",
"summary": "A short summary of the story.",
"published_at": "2026-09-23T13:00:00Z",
"author": "Example Author",
"image_url": "https://www.theglobeandmail.com/resizer/v2/EXAMPLE.JPG?width=1200"
}
]
}
}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 feed for one Globe and Mail section: each story's title, canonical URL, summary, author, publication time, and lead image. Section must be one of the slugs returned by /globeandmail/sections: `canada`, `world`, `business`, `investing`, `personal-finance`, `politics`, `opinion`, `culture`, `sports`, `life`, `real-estate`, `drive`.
{
"code": 200,
"msg": "OK",
"data": {
"section": "canada",
"items": [
{
"title": "Example headline",
"url": "https://www.theglobeandmail.com/canada/article-example-headline/",
"summary": "A short summary of the story.",
"published_at": "2026-09-23T13:00:00Z",
"author": "Example Author",
"image_url": "https://www.theglobeandmail.com/resizer/v2/EXAMPLE.JPG?width=1200"
}
]
}
}curl "https://api.crawlora.net/api/v1/globeandmail/headlines?section=<section>" \
-H "x-api-key: $CRAWLORA_API_KEY"