Endpoint Playground
Test Crawlora's New York Magazine 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/nymag/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical New York Magazine author URL |
{
"code": 200,
"data": {
"url": "https://nymag.com/author/john-herrman/",
"name": "John Herrman",
"job_title": "Tech Columnist, Intelligencer",
"bio": "John Herrman is a tech columnist at Intelligencer. Formerly, he was a reporter and critic at the New York Times.",
"articles": [
{
"title": "The Chatbots Are Pivoting to Video",
"url": "https://nymag.com/intelligencer/article/ai-chatbots-are-pivoting-to-video.html",
"section": "screen time",
"excerpt": "AI companies have a new favorite source material.",
"published_at": "Sept. 20, 2026"
}
]
}
}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 New York Magazine author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://nymag.com/author/john-herrman/",
"name": "John Herrman",
"job_title": "Tech Columnist, Intelligencer",
"bio": "John Herrman is a tech columnist at Intelligencer. Formerly, he was a reporter and critic at the New York Times.",
"articles": [
{
"title": "The Chatbots Are Pivoting to Video",
"url": "https://nymag.com/intelligencer/article/ai-chatbots-are-pivoting-to-video.html",
"section": "screen time",
"excerpt": "AI companies have a new favorite source material.",
"published_at": "Sept. 20, 2026"
}
]
}
}curl "https://api.crawlora.net/api/v1/nymag/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"