Endpoint Playground
Test Crawlora's Forbes editorial sections 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/forbes/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"data": {
"sections": [
{
"name": "Business",
"path": "/business/",
"url": "https://www.forbes.com/business/",
"parent": ""
},
{
"name": "Markets",
"path": "/business/markets/",
"url": "https://www.forbes.com/business/markets/",
"parent": "/business/"
}
]
}
}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.
Lists the current public Forbes navigation taxonomy, including business, money, innovation, leadership, lifestyle, Forbes Vetted, Advisor, Health, and their public subsections. Article promos, account surfaces, games, video-only links, and external hosts are excluded.
{
"code": 200,
"data": {
"sections": [
{
"name": "Business",
"path": "/business/",
"url": "https://www.forbes.com/business/",
"parent": ""
},
{
"name": "Markets",
"path": "/business/markets/",
"url": "https://www.forbes.com/business/markets/",
"parent": "/business/"
}
]
}
}curl "https://api.crawlora.net/api/v1/forbes/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"