Endpoint Playground
Test Crawlora's New York Times contributor 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/nyt/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical NYT author URL |
{
"code": 200,
"data": {
"url": "https://www.nytimes.com/by/maggie-haberman",
"name": "Maggie Haberman",
"tagline": "I'm a White House correspondent for The New York Times.",
"image_url": "https://static01.nyt.com/images/2018/07/12/multimedia/author-maggie-haberman/author-maggie-haberman-facebookJumbo-v3.png",
"about": [
{
"heading": "What I Cover",
"paragraphs": [
"I covered the 2024 presidential campaign..."
]
},
{
"heading": "My Background",
"paragraphs": [
"I'm a New York City native..."
]
}
],
"contact": [
{
"label": "Email",
"value": "maggie.haberman@nytimes.com",
"url": "mailto:maggie.haberman@nytimes.com"
},
{
"label": "X",
"value": "@maggienyt",
"url": "https://www.twitter.com/maggienyt"
}
],
"articles": [
{
"title": "Trump Gets Caught in a Dilemma Over a Saudi Plea for Military Help",
"url": "https://www.nytimes.com/2026/09/20/us/politics/trump-yemen-houthis-red-sea-iran.html",
"description": "The president vacillated but decided on Sunday not to join Saudi Arabia...",
"authors": [
"Helene Cooper",
"Eric Schmitt",
"Jonathan Swan",
"Maggie Haberman"
],
"image_url": "https://static01.nyt.com/images/2026/09/20/multimedia/20DC-Trump-Yemen-tjfc/20DC-Trump-Yemen-tjfc-square320.jpg"
}
]
},
"msg": "OK"
}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 New York Times contributor's public byline page: name, tagline, About/Contact panels, and their recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.nytimes.com/by/maggie-haberman",
"name": "Maggie Haberman",
"tagline": "I'm a White House correspondent for The New York Times.",
"image_url": "https://static01.nyt.com/images/2018/07/12/multimedia/author-maggie-haberman/author-maggie-haberman-facebookJumbo-v3.png",
"about": [
{
"heading": "What I Cover",
"paragraphs": [
"I covered the 2024 presidential campaign..."
]
},
{
"heading": "My Background",
"paragraphs": [
"I'm a New York City native..."
]
}
],
"contact": [
{
"label": "Email",
"value": "maggie.haberman@nytimes.com",
"url": "mailto:maggie.haberman@nytimes.com"
},
{
"label": "X",
"value": "@maggienyt",
"url": "https://www.twitter.com/maggienyt"
}
],
"articles": [
{
"title": "Trump Gets Caught in a Dilemma Over a Saudi Plea for Military Help",
"url": "https://www.nytimes.com/2026/09/20/us/politics/trump-yemen-houthis-red-sea-iran.html",
"description": "The president vacillated but decided on Sunday not to join Saudi Arabia...",
"authors": [
"Helene Cooper",
"Eric Schmitt",
"Jonathan Swan",
"Maggie Haberman"
],
"image_url": "https://static01.nyt.com/images/2026/09/20/multimedia/20DC-Trump-Yemen-tjfc/20DC-Trump-Yemen-tjfc-square320.jpg"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nyt/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"