Endpoint Playground
Test Crawlora's CNBC 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/cnbc/headlines?section=<section>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| section | string | Yes | Public CNBC editorial section slug from /cnbc/categories |
{
"code": 200,
"msg": "OK",
"data": {
"section": "markets",
"items": [
{
"title": "Markets headline",
"url": "https://www.cnbc.com/2026/09/21/example.html"
}
]
}
}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 current server-rendered CNBC headlines for one public editorial section, including title, article URL, and card metadata when available. Use /cnbc/categories to discover the supported section slugs.
{
"code": 200,
"msg": "OK",
"data": {
"section": "markets",
"items": [
{
"title": "Markets headline",
"url": "https://www.cnbc.com/2026/09/21/example.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/cnbc/headlines?section=<section>" \
-H "x-api-key: $CRAWLORA_API_KEY"