Endpoint Playground
Test Crawlora's Vox 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/vox/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Vox author URL |
{
"code": 200,
"data": {
"url": "https://www.vox.com/authors/andrew-prokop",
"name": "Andrew Prokop",
"job_title": "Senior Politics Correspondent",
"bio": "Andrew Prokop is a senior politics correspondent at Vox, covering the White House, elections, and political scandals and investigations.",
"articles": [
{
"title": "What the shutdown fight really means",
"url": "https://www.vox.com/politics/503500/shutdown-fight-explained",
"category": "Politics",
"excerpt": "A breakdown of the standoff.",
"published_at": "2026-09-21T14:00:00+00:00"
}
]
}
}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 Vox author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.vox.com/authors/andrew-prokop",
"name": "Andrew Prokop",
"job_title": "Senior Politics Correspondent",
"bio": "Andrew Prokop is a senior politics correspondent at Vox, covering the White House, elections, and political scandals and investigations.",
"articles": [
{
"title": "What the shutdown fight really means",
"url": "https://www.vox.com/politics/503500/shutdown-fight-explained",
"category": "Politics",
"excerpt": "A breakdown of the standoff.",
"published_at": "2026-09-21T14:00:00+00:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/vox/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"