Endpoint Playground
Test Crawlora's The Hill 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/thehill/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical The Hill author URL |
{
"code": 200,
"data": {
"url": "https://thehill.com/author/alexander-bolton/",
"name": "Alexander Bolton",
"job_title": "Senior staff writer",
"bio": "I have covered the daily operations of the United States Senate since the start of the Obama administration in 2009...",
"image_url": "https://thehill.com/wp-content/uploads/sites/2/2022/03/bolton.jpg?strip=1",
"articles": [
{
"title": "GOP Sen. John Curtis calls for Trump Jr., Hunter Biden investigations",
"url": "https://thehill.com/homenews/6103272-senator-subpoena-trump-jr-hunter-biden/",
"category": "Homenews",
"category_url": "https://thehill.com/homenews/",
"published_at": "10 hours ago"
}
]
}
}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 a The Hill author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://thehill.com/author/alexander-bolton/",
"name": "Alexander Bolton",
"job_title": "Senior staff writer",
"bio": "I have covered the daily operations of the United States Senate since the start of the Obama administration in 2009...",
"image_url": "https://thehill.com/wp-content/uploads/sites/2/2022/03/bolton.jpg?strip=1",
"articles": [
{
"title": "GOP Sen. John Curtis calls for Trump Jr., Hunter Biden investigations",
"url": "https://thehill.com/homenews/6103272-senator-subpoena-trump-jr-hunter-biden/",
"category": "Homenews",
"category_url": "https://thehill.com/homenews/",
"published_at": "10 hours ago"
}
]
}
}curl "https://api.crawlora.net/api/v1/thehill/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"