Endpoint Playground
Test Crawlora's Fortune 500 ranking filters 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/fortune/ranking/filters" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list | string | No | Accepted values: fortune500, global500, fortune500-europe, southeast-asia-500, fortune-china-500, 100-fastest-growing-companies, 40-under-40, ai-innovators, aiq, americas-most-innovative-companies, asia-future, best-companies, best-companies-europe, best-companies-southeast-asia, best-large-workplaces-in-technology, best-large-workplaces-parents, best-medium-workplaces, best-medium-workplaces-in-technology, best-places-families, best-places-retire-affordably, best-small-workplaces, best-small-workplaces-aging-services-senior-housing-care, best-small-workplaces-bay-area, best-small-workplaces-biotechnology-pharmaceuticals, best-small-workplaces-chicago-area, best-small-workplaces-construction, best-small-workplaces-consulting-professional-services, best-small-workplaces-financial-services-insurance, best-small-workplaces-for-women, best-small-workplaces-health-care, best-small-workplaces-in-technology, best-small-workplaces-manufacturing-production, best-small-workplaces-millennials, best-small-workplaces-new-york, best-small-workplaces-parents, best-small-workplaces-real-estate, best-small-workplaces-retail, best-small-workplaces-technology, best-small-workplaces-texas, best-workplaces-advertising-marketing, best-workplaces-aging-services-at-home-care, best-workplaces-aging-services-senior-housing-care, best-workplaces-baby-boomers, best-workplaces-bay-area, best-workplaces-biotechnology-pharmaceuticals, best-workplaces-camaraderie, best-workplaces-chicago-area, best-workplaces-construction, best-workplaces-consulting-professional-services, best-workplaces-finance-insurance, best-workplaces-financial-services-insurance, best-workplaces-flexibility, best-workplaces-for-african-americans, best-workplaces-for-asian-americans, best-workplaces-for-diversity, best-workplaces-for-hispanics-and-latinos, best-workplaces-for-retirement, best-workplaces-for-women, best-workplaces-gen-x, best-workplaces-giving-back, best-workplaces-health-care, best-workplaces-manufacturing-production, best-workplaces-millennials, best-workplaces-new-york, best-workplaces-parents, best-workplaces-real-estate, best-workplaces-recent-college-graduates, best-workplaces-retail, best-workplaces-technology, best-workplaces-texas, businessperson-of-the-year, candidates-working-women-times-up, change-the-world, creator-25, crypto, cyber, europes-most-innovative-companies, fintech-innovators-asia, food-drink-women-innovators, fortunate50, future-50, global-best-companies, heroes-of-the-fortune-500, impact20, inner-city-100, international-20, lgbtq-leaders, mejores-companias-latinos-hispanos, modern-board-25, most-fantastical-comic-book-businesses, most-important-private-companies, most-powerful-people, most-powerful-rising-executives, most-powerful-women, most-powerful-women-asia, most-powerful-women-europe-middle-east-africa, most-powerful-women-international, nfty-50, the-ledger-40-under-40, unicorns, women-tech-leaders-europe, worlds-best-workplaces, worlds-greatest-leaders, worlds-most-admired-companies. Defaults to fortune500. | |
| year | string | No | For fortune-china-500, accepted values are 2026, 2025, 2024, 2023; omit for current year or call fortune-ranking-years |
{
"code": 200,
"data": {
"list": "fortune500",
"year": "2026",
"years": [
"2026",
"2025",
"2024"
],
"search_fields": [
{
"field_name": "sector",
"title": "Sector",
"type": "text",
"options": [
"Aerospace & Defense",
"Retailing",
"Technology"
]
},
{
"field_name": "profitable",
"title": "Profitable",
"type": "text",
"options": [
"no",
"yes"
]
}
],
"sortable_fields": [
{
"title": "Rank",
"type": "text"
},
{
"title": "Revenues ($M)",
"type": "money"
},
{
"title": "Employees",
"type": "number"
}
]
}
}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 complete list/year-specific filter fields, exact options, and sortable columns from Fortune's public ranking source.
{
"code": 200,
"data": {
"list": "fortune500",
"year": "2026",
"years": [
"2026",
"2025",
"2024"
],
"search_fields": [
{
"field_name": "sector",
"title": "Sector",
"type": "text",
"options": [
"Aerospace & Defense",
"Retailing",
"Technology"
]
},
{
"field_name": "profitable",
"title": "Profitable",
"type": "text",
"options": [
"no",
"yes"
]
}
],
"sortable_fields": [
{
"title": "Rank",
"type": "text"
},
{
"title": "Revenues ($M)",
"type": "money"
},
{
"title": "Employees",
"type": "number"
}
]
}
}curl "https://api.crawlora.net/api/v1/fortune/ranking/filters" \
-H "x-api-key: $CRAWLORA_API_KEY"