Endpoint Playground
Test Crawlora's DW author 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/dw/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical www.dw.com/en/<name>/person-<id> URL |
{
"code": 200,
"data": {
"url": "https://www.dw.com/en/cathrin-schaer/person-55594156",
"name": "Cathrin Schaer",
"expertise": "Middle East, Business",
"biography": [
"Example biography paragraph."
],
"articles": [
{
"title": "Example headline",
"url": "https://www.dw.com/en/example-headline/a-12345678"
}
]
}
}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 Deutsche Welle correspondent's public profile (name, expertise, biography) and their recent articles from a canonical person-profile URL. Many DW breaking-news items are bylined to the "Deutsche Welle" editorial organization rather than a named person; those articles have no person-profile URL to look up.
{
"code": 200,
"data": {
"url": "https://www.dw.com/en/cathrin-schaer/person-55594156",
"name": "Cathrin Schaer",
"expertise": "Middle East, Business",
"biography": [
"Example biography paragraph."
],
"articles": [
{
"title": "Example headline",
"url": "https://www.dw.com/en/example-headline/a-12345678"
}
]
}
}curl "https://api.crawlora.net/api/v1/dw/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"