Endpoint Playground
Test Crawlora's Wall Street Journal 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/wsj/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | WSJ author slug | |
| url | string | No | Canonical https://www.wsj.com/news/author/<slug> URL, as an alternative to slug |
{
"code": 200,
"data": {
"articles": [
{
"published_at": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"bio": "sample",
"email": "operator@example.com",
"job_title": "sample",
"name": "sample",
"social_accounts": [
{
"platform": "sample",
"url": "https://example.com/resource"
}
],
"url": "https://example.com/resource"
},
"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 Wall Street Journal author's profile (name, job title, bio, and social links when available) and the recent articles listed on their author page, read directly from the live page. The author page sits behind the same access wall as article pages, so a nonexistent author slug returns 404.
{
"code": 200,
"data": {
"articles": [
{
"published_at": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"bio": "sample",
"email": "operator@example.com",
"job_title": "sample",
"name": "sample",
"social_accounts": [
{
"platform": "sample",
"url": "https://example.com/resource"
}
],
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wsj/author" \
-H "x-api-key: $CRAWLORA_API_KEY"