Endpoint Playground
Test Crawlora's The Verge 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/theverge/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical The Verge author URL |
{
"code": 200,
"data": {
"url": "https://www.theverge.com/authors/jay-peters",
"name": "Jay Peters",
"job_title": "Senior Reporter",
"bio": "Jay Peters is a senior reporter at The Verge. He covers breaking news in technology, video games, and more.\n\nBefore The Verge, he worked at Techmeme.",
"articles": [
{
"title": "A great new video game movie",
"url": "https://www.theverge.com/tech/997322/resident-evil-steam-frame-fire-emblem-fortunes-weave",
"category": "Tech",
"excerpt": "Plus, in this week's Installer.",
"published_at": "2026-09-20T12: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 The Verge author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.theverge.com/authors/jay-peters",
"name": "Jay Peters",
"job_title": "Senior Reporter",
"bio": "Jay Peters is a senior reporter at The Verge. He covers breaking news in technology, video games, and more.\n\nBefore The Verge, he worked at Techmeme.",
"articles": [
{
"title": "A great new video game movie",
"url": "https://www.theverge.com/tech/997322/resident-evil-steam-frame-fire-emblem-fortunes-weave",
"category": "Tech",
"excerpt": "Plus, in this week's Installer.",
"published_at": "2026-09-20T12:00:00+00:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/theverge/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"