Endpoint Playground
Test Crawlora's Newsweek 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/newsweek/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. jennifer-fink | |
| url | string | No | Canonical newsweek.com/authors/<slug> URL, optionally with a ?page=<n> query; alternative to slug | |
| page | integer | No | 1-based page number; overrides any page number in url |
{
"code": 200,
"data": {
"name": "Jenni Fink",
"slug": "jennifer-fink",
"url": "https://www.newsweek.com/authors/jennifer-fink",
"job_title": "Senior Editor",
"bio": "Jenni Fink is a senior editor at Newsweek, based in New York City...",
"email": "j.fink@newsweek.com",
"image_url": "https://assets.newsweek.com/wp-content/uploads/2026/06/Jenni-Fink.png",
"page": 1,
"has_next_page": true,
"articles": [
{
"title": "Alexandria Ocasio-Cortez Knows She May Not Be Able to Win in 2028",
"url": "https://www.newsweek.com/alexandria-ocasio-cortez-2028-presidential-campaign-odds-win-chances-12473238",
"section": "News",
"section_url": "https://www.newsweek.com/news",
"summary": "Alexandria Ocasio-Cortez got candid about the factors she's weighing for a 2028 presidential campaign."
}
]
}
}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 Newsweek author's public profile: name, job title, bio, email, and one page of their recent articles.
{
"code": 200,
"data": {
"name": "Jenni Fink",
"slug": "jennifer-fink",
"url": "https://www.newsweek.com/authors/jennifer-fink",
"job_title": "Senior Editor",
"bio": "Jenni Fink is a senior editor at Newsweek, based in New York City...",
"email": "j.fink@newsweek.com",
"image_url": "https://assets.newsweek.com/wp-content/uploads/2026/06/Jenni-Fink.png",
"page": 1,
"has_next_page": true,
"articles": [
{
"title": "Alexandria Ocasio-Cortez Knows She May Not Be Able to Win in 2028",
"url": "https://www.newsweek.com/alexandria-ocasio-cortez-2028-presidential-campaign-odds-win-chances-12473238",
"section": "News",
"section_url": "https://www.newsweek.com/news",
"summary": "Alexandria Ocasio-Cortez got candid about the factors she's weighing for a 2028 presidential campaign."
}
]
}
}curl "https://api.crawlora.net/api/v1/newsweek/author" \
-H "x-api-key: $CRAWLORA_API_KEY"