Endpoint Playground
Test Crawlora's Sky News 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/skynews/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Sky News author URL |
{
"code": 200,
"data": {
"url": "https://news.sky.com/author/example-author-123",
"name": "Example Author",
"job_title": "Example Editor",
"info": [
{
"label": "Expertise",
"value": "Politics"
},
{
"label": "Follow on X",
"value": "@ExampleAuthor",
"url": "https://x.com/ExampleAuthor"
}
],
"biography": [
"Example is an editor covering example topics."
],
"articles": [
{
"title": "Example headline",
"url": "https://news.sky.com/story/example-story-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 a Sky News author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://news.sky.com/author/example-author-123",
"name": "Example Author",
"job_title": "Example Editor",
"info": [
{
"label": "Expertise",
"value": "Politics"
},
{
"label": "Follow on X",
"value": "@ExampleAuthor",
"url": "https://x.com/ExampleAuthor"
}
],
"biography": [
"Example is an editor covering example topics."
],
"articles": [
{
"title": "Example headline",
"url": "https://news.sky.com/story/example-story-12345678"
}
]
}
}curl "https://api.crawlora.net/api/v1/skynews/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"