Endpoint Playground
Test Crawlora's Fortune company directory 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/companies" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Case-insensitive company-name search | |
| country | string | No | Country/territory slug or title; call fortune-company-filters for the complete accepted set | |
| industry | string | No | Exact industry title; call fortune-company-filters for the complete accepted set | |
| ranking | string | No | Fortune ranking slug to filter companies that appear on it; call fortune-company-filters for the accepted set | |
| year | string | No | Ranking year the ranking filter is evaluated against; defaults to the current year | |
| min_revenue | integer | No | Minimum revenue in $M | |
| max_revenue | integer | No | Maximum revenue in $M | |
| min_employees | integer | No | Minimum employee count | |
| max_employees | integer | No | Maximum employee count | |
| page | integer | No | 1-based page number; 30 companies per page |
{
"code": 200,
"data": {
"search": "alphabet",
"page": 1,
"per_page": 30,
"total_pages": 1,
"total": 1,
"has_more": false,
"items": [
{
"name": "Alphabet",
"slug": "alphabet",
"url": "https://fortune.com/company/alphabet/",
"country": "U.S.",
"revenues": "$402,836",
"description": "Google's parent company, Alphabet, is an American multinational technology conglomerate holding company..."
}
]
}
}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 companies from Fortune's public company directory (9,000+ companies as of 2026-09-23) with search, filtering, and pagination.
{
"code": 200,
"data": {
"search": "alphabet",
"page": 1,
"per_page": 30,
"total_pages": 1,
"total": 1,
"has_more": false,
"items": [
{
"name": "Alphabet",
"slug": "alphabet",
"url": "https://fortune.com/company/alphabet/",
"country": "U.S.",
"revenues": "$402,836",
"description": "Google's parent company, Alphabet, is an American multinational technology conglomerate holding company..."
}
]
}
}curl "https://api.crawlora.net/api/v1/fortune/companies" \
-H "x-api-key: $CRAWLORA_API_KEY"