Endpoint Playground
Test Crawlora's Sky News video 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/video?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Sky News video URL |
{
"code": 200,
"data": {
"url": "https://news.sky.com/video/example-video-12345678",
"title": "Example video headline",
"description": "Example video description.",
"thumbnail_urls": [
"https://example.365dm.com/example-thumb.jpg"
],
"published_at": "2026-09-19T16:00:16Z",
"duration_seconds": 50,
"embed_url": "https://news.sky.com/iframe/widget/video/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 Sky News video's public metadata (title, description, thumbnails, duration, embed URL) from a canonical video URL. There is no transcript or article body for a video.
{
"code": 200,
"data": {
"url": "https://news.sky.com/video/example-video-12345678",
"title": "Example video headline",
"description": "Example video description.",
"thumbnail_urls": [
"https://example.365dm.com/example-thumb.jpg"
],
"published_at": "2026-09-19T16:00:16Z",
"duration_seconds": 50,
"embed_url": "https://news.sky.com/iframe/widget/video/12345678"
}
}curl "https://api.crawlora.net/api/v1/skynews/video?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"