autonews.com APIautonews.com ↗
Access Automotive News headlines, article search, brand-specific news, and regional coverage for Europe, Canada, and Asia via a structured REST API.
curl -X GET 'https://api.parse.bot/scraper/498c48f7-52dd-4787-af1f-3ac8d6be98f8/get_latest_headlines?limit=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch a feed of the latest headlines from Automotive News. Returns paginated results ordered by publish date.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of articles to return. |
| offset | integer | Offset for pagination. |
{
"type": "object",
"fields": {
"articles": "array of article objects with id, headline, url, description, image_url, category, published_at, authors, and tags"
},
"sample": {
"data": {
"articles": [
{
"id": "MYNO54UVOBHXPBACDLA4JJN6VE",
"url": "https://www.autonews.com/newsletters/daily-5/an-daily-5-canada-ev-prices-incentives-chinese-competition-0507/",
"tags": [],
"authors": [
"Omari Gardner"
],
"category": "",
"headline": "Daily 5 report for May 7: With Chinese EVs coming to Canada, automakers play defense with aggressive incentives",
"image_url": "https://cloudfront-us-east-1.images.arcpublishing.com/crain/NPPL62MNRFEMXI2NCFJGRCGTH4.jpg",
"description": "Automaker incentives of up to $13,000 plus a $5,000 federal rebate push Canadian EV prices below $30,000 as Chinese brands prepare to enter the market.",
"published_at": "2026-05-07T19:00:00Z"
}
]
},
"status": "success"
}
}About the autonews.com API
The Automotive News API exposes 9 endpoints covering the full editorial output of autonews.com, including get_latest_headlines for paginated feed access, category and region-specific endpoints, brand-level news lookup, and keyword search. Each article object returns up to nine structured fields: headline, description, url, image_url, category, published_at, authors, tags, and a unique id. The API is suited for monitoring industry news across retail, manufacturing, EV, and technology verticals as well as geographic markets.
What the API Returns
Every article-bearing endpoint returns a consistent object shape with id, headline, url, description, image_url, category, published_at, authors, and tags. The published_at field is an ISO 8601 timestamp, making it straightforward to sort or filter results by recency in your application. The authors field is an array of name strings, and tags is a flat array of topic strings attached to the article by Automotive News editors.
Navigating Categories and Regions
get_category_headlines accepts a required category parameter with verified values including retail, manufacturing, ev, technology, europe, canada, and asia. For convenience, dedicated endpoints — get_europe_headlines, get_canada_headlines, and get_asia_headlines — return regional articles directly without requiring a parameter. Both approaches return the same article object shape along with a category confirmation field.
Search and Brand Lookup
search_articles accepts a query string plus optional limit and offset for pagination, and uniquely returns a total integer alongside the results array — useful for building paginated UIs or estimating corpus size for a given topic. get_news_by_brand accepts a brand string (e.g., Tesla, Ford, Toyota) and attempts to locate articles from a brand-dedicated section before falling back to search, making it the most targeted way to track automaker-specific coverage.
Article Detail Lookup
get_article_details accepts a full url from autonews.com and returns the complete metadata object for that article. This is useful when you have a URL from an external reference and need to resolve structured metadata — category, tags, authors, image, and description — without re-running a search query.
- Track EV industry coverage by polling
get_category_headlineswith categoryevand monitoring newpublished_attimestamps. - Build a competitive intelligence feed by querying
get_news_by_brandfor multiple automakers and aggregating results by brand. - Populate a news widget with homepage-curated articles using
get_homepage_headlines, which returns up to 10 editorially selected pieces. - Search earnings-adjacent coverage by passing financial terms to
search_articlesand using thetotalfield to gauge story volume. - Monitor Canadian and European market news separately using
get_canada_headlinesandget_europe_headlineswithout parameter configuration. - Resolve article metadata from an externally sourced URL by passing it to
get_article_detailsto retrieve tags, authors, and category. - Archive automotive retail news by paginating
get_category_headlineswith theretailcategory usinglimitandoffsetparameters.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Automotive News offer an official developer API?+
What does `get_article_details` return that feed endpoints do not?+
get_article_details is functionally identical in response shape but is the only endpoint that resolves a full autonews.com URL directly to metadata — useful when you already have a URL and want to avoid a separate search round-trip.Does `search_articles` support filtering by date range or category?+
search_articles accepts only a query string plus limit and offset. It does not support filtering by published_at date range or by category within the query parameters. Results include a total count and a category field per article, so post-response filtering is possible client-side. You can fork this API on Parse and revise it to add a date-range or category filter parameter to the search endpoint.Does the API return full article body text?+
How fresh are the headlines returned by `get_latest_headlines`?+
published_at. Automotive News publishes throughout the business day, so freshness depends on publication cadence rather than a fixed polling interval. For near-real-time monitoring, polling get_latest_headlines at regular intervals and comparing id or published_at values is the standard approach.