Endpoint Playground
Test Crawlora's Business Insider 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/businessinsider/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug | |
| url | string | No | Canonical businessinsider.com/author/<slug> URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Peter Kafka",
"slug": "peter-kafka",
"url": "https://www.businessinsider.com/author/peter-kafka",
"job_title": "Chief Correspondent",
"bio": "Peter covers media and technology for Business Insider; previously he has worked at Vox, Recode, AllThingsD, and Forbes.",
"image_url": "https://i.insider.com/678530c18951662c9f1fd624?width=1151&format=jpeg",
"social_accounts": [
{
"platform": "twitter",
"url": "https://www.x.com/pkafka"
}
],
"articles": [
{
"title": "Of course Larry and David Ellison got their way",
"url": "https://www.businessinsider.com/larry-david-ellison-lawsuit-states-power-trump-money-paramont-wbd-2026-9",
"summary": "When your dad is one of the richest men in the world, you get the media conglomerate you want.",
"published_at": "2026-09-21"
}
]
}
}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 Business Insider author's public profile: name, job title, bio, social accounts, and their recent articles.
{
"code": 200,
"data": {
"name": "Peter Kafka",
"slug": "peter-kafka",
"url": "https://www.businessinsider.com/author/peter-kafka",
"job_title": "Chief Correspondent",
"bio": "Peter covers media and technology for Business Insider; previously he has worked at Vox, Recode, AllThingsD, and Forbes.",
"image_url": "https://i.insider.com/678530c18951662c9f1fd624?width=1151&format=jpeg",
"social_accounts": [
{
"platform": "twitter",
"url": "https://www.x.com/pkafka"
}
],
"articles": [
{
"title": "Of course Larry and David Ellison got their way",
"url": "https://www.businessinsider.com/larry-david-ellison-lawsuit-states-power-trump-money-paramont-wbd-2026-9",
"summary": "When your dad is one of the richest men in the world, you get the media conglomerate you want.",
"published_at": "2026-09-21"
}
]
}
}curl "https://api.crawlora.net/api/v1/businessinsider/author" \
-H "x-api-key: $CRAWLORA_API_KEY"