Endpoint Playground
Test Crawlora's Yahoo Autos Article 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/yahoo-autos/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical autos.yahoo.com article URL |
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://autos.yahoo.com/auto-shows/articles/supercars-gordon-murray-teasing-one-233000010.html",
"title": "Like supercars? Gordon Murray is teasing a new one on the way for Monterey Car Week",
"description": "Legendary former F1 Technical Designer teases new release coming in a few days",
"author": "Mark D McKee",
"published_at": "2026-08-13T23:30:00Z",
"updated_at": "2026-08-13T23:30:00Z",
"section": "Auto shows",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/gordonmurray-hero.jpg",
"keywords": [
"Gordon Murray",
"Monterey Car Week",
"Dario Franchitti"
],
"provider": "The Manual",
"paragraphs": [
"Monterey Car Week got underway this weekend, and there is a bevy of incredible exotics on display."
]
}
}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 single Yahoo Autos article's full content: title, description, author, publish/update time, section, image, keywords, original publisher, and body paragraphs. Accepts a canonical autos.yahoo.com article URL, such as one returned by the home or category story streams.
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://autos.yahoo.com/auto-shows/articles/supercars-gordon-murray-teasing-one-233000010.html",
"title": "Like supercars? Gordon Murray is teasing a new one on the way for Monterey Car Week",
"description": "Legendary former F1 Technical Designer teases new release coming in a few days",
"author": "Mark D McKee",
"published_at": "2026-08-13T23:30:00Z",
"updated_at": "2026-08-13T23:30:00Z",
"section": "Auto shows",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/gordonmurray-hero.jpg",
"keywords": [
"Gordon Murray",
"Monterey Car Week",
"Dario Franchitti"
],
"provider": "The Manual",
"paragraphs": [
"Monterey Car Week got underway this weekend, and there is a bevy of incredible exotics on display."
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-autos/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"