Automotive news monitoring
Use Yahoo Autos endpoints to turn automotive news monitoring into repeatable API requests with documented inputs and JSON responses.
Turn autos.yahoo.com's own server-rendered car news, reviews, and buying-guide pages into structured JSON — homepage and section story feeds plus full article content. Credential-free.
Extract Yahoo Autos's homepage and section editorial story feeds and full article content as structured JSON.
Endpoint families
3
Documented params
6
Examples
3
Live catalog snapshot
Active endpoints
3
Methods
GET
Required params
5
Schema refs
3
{
"platform": "Yahoo Autos",
"endpoint": "yahoo-autos-home",
"method": "GET",
"path": "/yahoo-autos/home",
"auth": "apiKey"
}Use cases
Extract Yahoo Autos's homepage and section editorial story feeds and full article content as structured JSON.
Use Yahoo Autos endpoints to turn automotive news monitoring into repeatable API requests with documented inputs and JSON responses.
Use Yahoo Autos endpoints to turn vehicle review aggregation into repeatable API requests with documented inputs and JSON responses.
Use Yahoo Autos endpoints to turn editorial content pipelines into repeatable API requests with documented inputs and JSON responses.
Managed execution
Every figure below is read from the live Yahoo Autos endpoint catalog — 3 endpoints, 6 documented request parameters, and 3 published response schemas — the same catalog Docs and Playground run against.
3 documented Yahoo Autos endpoints, grouped into 3 request families — Article, Category and Home.
6 request parameters are documented across those Yahoo Autos endpoints, 5 of them required — the full input contract is public before you write any integration code.
3 of the 3 Yahoo Autos endpoints ship a recorded example response, and 3 carry a documented response schema — you can code against the real JSON before the first request.
Yahoo Autos endpoints document their error responses (400, 404, 429, 500 and 503) alongside the success schema, so a block, a rate limit, or a missing record comes back as a typed error rather than silently empty data.
3 hosted MCP tools back the Yahoo Autos endpoints, so an agent can call the same routes with the same parameters and the same JSON contract, with no custom glue.
Coverage map
These cards are generated from the active endpoint catalog, so the landing page reflects the same API surface used by Docs and Playground.
/yahoo-autos/article
/yahoo-autos/category
/yahoo-autos/home
Endpoint catalog
/yahoo-autos/homeReturns Yahoo Autos's homepage editorial story feed: title, destination URL, category, and thumbnail image for each story. Sourced from Yahoo Autos's own server-rendered homepage.
Response notes
- `category` is derived from the story's own URL path (e.g. `auto-shows`, `ownership`, `safety-and-recalls`) and is omitted only if the URL doesn't match the expected `/<category>/.../articles/....html` shape. - A blocked or CAPTCHA-served response returns `503`. Example response: ```json { "code": 200, "msg": "OK", "data": { "items": [ { "id": "233000010", "title": "Like supercars? Gordon Murray is teasing a new one on the way for Monterey Car Week", "url": "https://autos.yahoo.com/auto-shows/articles/supercars-gordon-murray-teasing-one-233000010.html", "category": "auto-shows", "thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/gordonmurray.jpg" } ] } } ```
MCP tool yahoo_autos_home
/yahoo-autos/categoryReturns a Yahoo Autos section's editorial story feed: title, destination URL, category, and thumbnail image for each story, with page-based pagination. Sourced from Yahoo Autos's own server-rendered section pages.
Response notes
- Pagination follows Yahoo's own path-segment scheme (`autos.yahoo.com/<category>/<page>/`), not a query-param offset; `next_page` is omitted when the section's own pagination control has no higher page number. - Only stories whose own URL path starts with `/<category>/` are returned -- a section page's cross-category recirculation modules do not leak unrelated stories into the result set. - An unrecognized `category` value returns `400`. Example response: ```json { "code": 200, "msg": "OK", "data": { "category": "auto-shows", "items": [ { "id": "233000010", "title": "Like supercars? Gordon Murray is teasing a new one on the way for Monterey Car Week", "url": "https://autos.yahoo.com/auto-shows/articles/supercars-gordon-murray-teasing-one-233000010.html", "category": "auto-shows", "thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/gordonmurray.jpg" } ], "pagination": { "page": 1, "next_page": 2 } } } ```
MCP tool yahoo_autos_category
/yahoo-autos/articleReturns 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.
Response notes
- `provider` is the original outlet the story is syndicated from when applicable, otherwise `"Yahoo Autos"`. - `paragraphs` can be an empty array for an article whose metadata loaded but whose body content did not render -- this is returned as a normal `200`, not an error. A response missing *both* metadata and body paragraphs is treated as an upstream error (parser drift or a block), not a silent empty success. - A `url` that isn't an `autos.yahoo.com` article URL returns `400`. Example response: ```json { "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." ] } } ```
MCP tool yahoo_autos_article
Related APIs
Media & Streaming
Research streaming catalogs, title availability, providers, offers, seasons, episodes, and release changes from JustWatch with normalized JSON.
Media & Streaming
Turn Apple Books ebook and audiobook pages into structured data — search, catalog detail, paginated customer reviews, similar titles, author bibliographies, series listings, and chart rankings as normalized JSON. Credential-free.
Media & Streaming
Search public Ticketmaster events and browse the full discovery hierarchy by category or city, with pagination plus event, attraction, and venue detail endpoints -- including fan reviews, related attractions, trending attractions, and enhanced venue branding -- for live-entertainment research.
How to scrape Yahoo Autos
Yahoo Autos has no public developer API, but autos.yahoo.com's own pages are credential-free public HTML. Crawlora's 3 Yahoo Autos endpoints return the homepage and section story feeds and full article content as normalized JSON.
The homepage endpoint returns Yahoo Autos's editorial story feed; the category endpoint returns a section's feed (auto-shows, classic-and-collector, deals-and-buying-guides, ev-and-future-tech, general, new-vehicles-and-reviews, ownership, people-and-culture, policy-and-environment, or safety-and-recalls) with page-based pagination — each story includes its title, destination URL, category, and thumbnail image.
Pass a story's canonical autos.yahoo.com article URL from either feed to the article endpoint to get its title, description, author, publish/update time, section, image, keywords, original publisher, and full body paragraphs.
FAQ
No. Yahoo Autos has no public developer API. Crawlora's endpoints read autos.yahoo.com's own server-rendered pages and return the data as normalized JSON.
auto-shows, classic-and-collector, deals-and-buying-guides, ev-and-future-tech, general, new-vehicles-and-reviews, ownership, people-and-culture, policy-and-environment, and safety-and-recalls — the category endpoint's category parameter accepts exactly those ten values.
Pass the article's URL (returned by the home or category endpoints as each story's url field) to /yahoo-autos/article.