Endpoint Playground
Test Crawlora's Fortune author 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/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. sheryl-estrada | |
| url | string | No | Canonical fortune.com/author/<slug>/ URL, optionally with a /page/<n>/ suffix; alternative to slug | |
| page | integer | No | 1-based page number; overrides any page number in url |
{
"code": 200,
"data": {
"name": "Sheryl Estrada",
"slug": "sheryl-estrada",
"url": "https://fortune.com/author/sheryl-estrada/",
"bio": "Sheryl Estrada is a senior writer at Fortune, where she covers the corporate finance industry, Wall Street, and corporate leadership...",
"email": "sheryl.estrada@fortune.com",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/sherylestrada"
},
{
"platform": "linkedin",
"url": "https://www.linkedin.com/in/sherylestrada/"
}
],
"page": 1,
"total_pages": 96,
"articles": [
{
"title": "From $2 billion to $112 billion in annual profit: How Apple transformed its business",
"url": "https://fortune.com/2026/09/22/from-2-billion-to-112-billion-annual-profit-how-apple-transformed-business-cfo/",
"section": "Big Tech",
"section_url": "https://fortune.com/section/big-tech/",
"published_at": "2026-09-22",
"authors": [
"Sheryl Estrada"
]
}
]
}
}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 Fortune author's public profile: name, bio, email, social accounts, and one page of their recent articles (30 fortune.com/2026-format article dates use "Month D, YYYY"; converted to YYYY-MM-DD here).
{
"code": 200,
"data": {
"name": "Sheryl Estrada",
"slug": "sheryl-estrada",
"url": "https://fortune.com/author/sheryl-estrada/",
"bio": "Sheryl Estrada is a senior writer at Fortune, where she covers the corporate finance industry, Wall Street, and corporate leadership...",
"email": "sheryl.estrada@fortune.com",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/sherylestrada"
},
{
"platform": "linkedin",
"url": "https://www.linkedin.com/in/sherylestrada/"
}
],
"page": 1,
"total_pages": 96,
"articles": [
{
"title": "From $2 billion to $112 billion in annual profit: How Apple transformed its business",
"url": "https://fortune.com/2026/09/22/from-2-billion-to-112-billion-annual-profit-how-apple-transformed-business-cfo/",
"section": "Big Tech",
"section_url": "https://fortune.com/section/big-tech/",
"published_at": "2026-09-22",
"authors": [
"Sheryl Estrada"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/fortune/author" \
-H "x-api-key: $CRAWLORA_API_KEY"