Endpoint Playground
Test Crawlora's HuffPost 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/huffpost/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical huffpost.com/author/<slug> URL |
{
"code": 200,
"data": {
"url": "https://www.huffpost.com/author/lee-moran",
"name": "Lee Moran",
"job_title": "European correspondent, HuffPost",
"image_url": "https://img.huffingtonpost.com/asset/example.jpg",
"biography": [
"Lee Moran is a half-Spanish, half-English journalist..."
],
"social_links": [
{
"platform": "facebook",
"url": "https://www.facebook.com/leemoranjournalist"
},
{
"platform": "x",
"url": "https://www.x.com/lee_moran"
}
],
"articles": [
{
"title": "Example story by this author",
"url": "https://www.huffpost.com/entry/example-story_n_1234567890abcdef12345678"
}
]
}
}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 HuffPost author or contributor's public profile: name, job title, headshot, biography, social links, and their recent articles.
{
"code": 200,
"data": {
"url": "https://www.huffpost.com/author/lee-moran",
"name": "Lee Moran",
"job_title": "European correspondent, HuffPost",
"image_url": "https://img.huffingtonpost.com/asset/example.jpg",
"biography": [
"Lee Moran is a half-Spanish, half-English journalist..."
],
"social_links": [
{
"platform": "facebook",
"url": "https://www.facebook.com/leemoranjournalist"
},
{
"platform": "x",
"url": "https://www.x.com/lee_moran"
}
],
"articles": [
{
"title": "Example story by this author",
"url": "https://www.huffpost.com/entry/example-story_n_1234567890abcdef12345678"
}
]
}
}curl "https://api.crawlora.net/api/v1/huffpost/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"