Endpoint Playground
Test Crawlora's Fortune company profile 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/company" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Company slug, e.g. alphabet | |
| url | string | No | Canonical fortune.com/company/<slug>/ URL; alternative to slug |
{
"code": 200,
"data": {
"title": "Alphabet",
"slug": "alphabet",
"url": "https://fortune.com/company/alphabet/",
"description": "Google's parent company, Alphabet, is an American multinational technology conglomerate holding company...",
"info": {
"CEO": "Sundar Pichai",
"Country/Territory": "U.S.",
"Headquarters": "Mountain View, Calif.",
"Industry": "Internet Services and Retailing",
"Ticker": "GOOGL",
"Company type": "Public",
"Revenues ($M)": "$402,836",
"Profits ($M)": "$132,170",
"Market value ($M)": "$4,280,791",
"Number of employees": "190,820",
"StockQuote": "NASDAQ"
},
"rankings": [
{
"slug": "global500",
"title": "Fortune Global 500",
"rank": 8,
"year": 2026,
"description": "The companies on the Global 500 employ 70.2 million people...",
"url": "https://fortune.com/ranking/global500/"
}
],
"earning_reports": [
{
"title": "Q2 2026",
"slug": "q2-2026",
"url": "https://fortune.com/company/alphabet/earnings/q2-2026/"
}
],
"breadcrumbs": [
{
"label": "Companies",
"link": "/companies/"
},
{
"label": "Alphabet",
"link": "/company/alphabet/"
}
]
}
}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 one company's public Fortune profile: fact sheet (headquarters, CEO, ticker, revenues, employees, ...), the Fortune rankings it appears on, workplace data tables, earnings report links, and social accounts, recovered from the company's own fortune.com page.
{
"code": 200,
"data": {
"title": "Alphabet",
"slug": "alphabet",
"url": "https://fortune.com/company/alphabet/",
"description": "Google's parent company, Alphabet, is an American multinational technology conglomerate holding company...",
"info": {
"CEO": "Sundar Pichai",
"Country/Territory": "U.S.",
"Headquarters": "Mountain View, Calif.",
"Industry": "Internet Services and Retailing",
"Ticker": "GOOGL",
"Company type": "Public",
"Revenues ($M)": "$402,836",
"Profits ($M)": "$132,170",
"Market value ($M)": "$4,280,791",
"Number of employees": "190,820",
"StockQuote": "NASDAQ"
},
"rankings": [
{
"slug": "global500",
"title": "Fortune Global 500",
"rank": 8,
"year": 2026,
"description": "The companies on the Global 500 employ 70.2 million people...",
"url": "https://fortune.com/ranking/global500/"
}
],
"earning_reports": [
{
"title": "Q2 2026",
"slug": "q2-2026",
"url": "https://fortune.com/company/alphabet/earnings/q2-2026/"
}
],
"breadcrumbs": [
{
"label": "Companies",
"link": "/companies/"
},
{
"label": "Alphabet",
"link": "/company/alphabet/"
}
]
}
}curl "https://api.crawlora.net/api/v1/fortune/company" \
-H "x-api-key: $CRAWLORA_API_KEY"