Endpoint Playground
Test Crawlora's News.com.au 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/newscomau/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical News.com.au author URL |
{
"code": 200,
"data": {
"url": "https://www.news.com.au/the-team/example-writer",
"name": "Example Writer",
"job_title": "News Editor",
"biography": [
"Example Writer has worked as a journalist for over a decade."
],
"social_urls": [
"https://twitter.com/examplewriter"
],
"articles": [
{
"title": "Example headline",
"url": "https://www.news.com.au/national/example-headline/news-story/0123456789abcdef0123456789abcdef"
}
]
}
}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 News.com.au staff writer's profile (name, job title, headshot, biography, social links) and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.news.com.au/the-team/example-writer",
"name": "Example Writer",
"job_title": "News Editor",
"biography": [
"Example Writer has worked as a journalist for over a decade."
],
"social_urls": [
"https://twitter.com/examplewriter"
],
"articles": [
{
"title": "Example headline",
"url": "https://www.news.com.au/national/example-headline/news-story/0123456789abcdef0123456789abcdef"
}
]
}
}curl "https://api.crawlora.net/api/v1/newscomau/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"