Discover/autonews API
live

autonews APIautonews.com

Access Automotive News headlines, article search, brand-specific news, and regional coverage for Europe, Canada, and Asia via a structured REST API.

Endpoint health
verified 4d ago
get_article_details
get_canada_headlines
get_category_headlines
get_homepage_headlines
get_europe_headlines
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the autonews 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.

Try it
Maximum number of articles to return.
Offset for pagination.
api.parse.bot/scraper/498c48f7-52dd-4787-af1f-3ac8d6be98f8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/498c48f7-52dd-4787-af1f-3ac8d6be98f8/get_latest_headlines?limit=5&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace autonews-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Automotive News SDK — bounded, re-runnable; every call capped."""
from parse_apis.automotive_news_api import AutomotiveNews, Category, ArticleNotFound

client = AutomotiveNews()

# Browse the latest headlines — limit caps total items fetched.
for article in client.articles.latest(limit=3):
    print(article.headline, article.published_at)

# Search by keyword and drill into the first result.
result = client.articles.search(query="electric vehicles", limit=1).first()
if result:
    detail = client.articles.get(url=result.url)
    print(detail.headline, detail.category, detail.authors)

# Filter by category using the Category enum.
for article in client.articles.by_category(category=Category.EV, limit=3):
    print(article.headline, article.authors)

# Check brand-specific coverage.
for article in client.articles.by_brand(brand="Toyota", limit=3):
    print(article.headline, article.published_at)

# Typed error handling for a missing article.
try:
    client.articles.get(url="https://www.autonews.com/nonexistent-article-path/")
except ArticleNotFound as exc:
    print(f"Article not found: {exc.url}")

print("exercised: articles.latest / articles.search / articles.get / articles.by_category / articles.by_brand")
All endpoints · 9 totalmissing one? ·

Fetch a feed of the latest headlines from Automotive News. Returns articles ordered by publish date. Supports offset-based pagination via limit and offset parameters.

Input
ParamTypeDescription
limitintegerMaximum number of articles to return.
offsetintegerOffset for pagination.
Response
{
  "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": "E7NO7IMYTBBTNBYXOOLNVPAU7I",
          "url": "https://www.autonews.com/stellantis/dodge/an-dodge-fathers-day-fragrance-0611/",
          "tags": [],
          "authors": [
            "Ad Age Staff"
          ],
          "category": "",
          "headline": "This Father’s Day, Dodge says Dad needs the scent of a Hemi",
          "image_url": "https://cloudfront-us-east-1.images.arcpublishing.com/crain/VTCCUTPXWRHS3MSJQ3HKGQCCOE.jpg",
          "description": "A social-media campaign spoofs classic fragrance advertising.",
          "published_at": "2026-06-11T10:00:01Z"
        }
      ]
    },
    "status": "success"
  }
}

About the autonews API

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.

Reliability & maintenanceVerified

The autonews API is a managed, monitored endpoint for autonews.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when autonews.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official autonews.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
9/9 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track EV industry coverage by polling get_category_headlines with category ev and monitoring new published_at timestamps.
  • Build a competitive intelligence feed by querying get_news_by_brand for 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_articles and using the total field to gauge story volume.
  • Monitor Canadian and European market news separately using get_canada_headlines and get_europe_headlines without parameter configuration.
  • Resolve article metadata from an externally sourced URL by passing it to get_article_details to retrieve tags, authors, and category.
  • Archive automotive retail news by paginating get_category_headlines with the retail category using limit and offset parameters.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Automotive News offer an official developer API?+
Automotive News (autonews.com) does not publish a public developer API or documented data access program. This Parse API provides structured access to the site's editorial content.
What does `get_article_details` return that feed endpoints do not?+
All feed endpoints return the same core article object. 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?+
No endpoint currently returns the full body text of an article. The API covers metadata fields: headline, description, url, image_url, category, published_at, authors, and tags. Full article content sits behind Automotive News's subscription paywall and is not part of this API's scope. You can fork it on Parse and revise to add a body-text endpoint if that data becomes accessible to you.
How fresh are the headlines returned by `get_latest_headlines`?+
The endpoint reflects the current published feed from autonews.com ordered by 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.
Page content last updated . Spec covers 9 endpoints from autonews.com.
Related APIs in News MediaSee all →
sneakernews.com API
Browse the latest sneaker news, search articles by keyword, and look up upcoming release dates — including pricing, images, and retailer links. Also surfaces per-page ad slot inventory and density metrics for programmatic and publisher analysis.
allcarindex.com API
Browse and search detailed information on over 14,000 automotive brands and 6,000 concept cars, organized by region, country, and model specifications. Discover vehicle data across the world's largest automotive encyclopedia with instant access to brand details, model information, and comprehensive search capabilities.
auto-data.net API
Search and retrieve comprehensive specifications for over 53,500 cars by browsing brands, models, generations, and variants to find detailed performance, engine, dimensions, and drivetrain data. Quickly access the exact automotive information you need without navigating multiple sources.
news.un.org API
Access UN News headlines, stories, and articles organized by topic and region across multiple languages. Search news content, retrieve in-depth reports, and subscribe to RSS feeds for updates on global events and UN initiatives.
prnewswire.com API
Access the latest press releases, earnings announcements, and news from PR Newswire across specific categories and organizations, with options to search by keywords or dates. Filter releases by industry, company newsrooms, and subscribe to RSS feeds for real-time updates on corporate news and financial disclosures.
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
railway-technology.com API
Stay informed on railway industry developments by accessing the latest news, searching articles by sector or theme, and researching infrastructure projects and company profiles. Get detailed information on specific news articles, project details, and company backgrounds all in one place.
agweb.com API
Access real-time agricultural news, commodity futures prices for corn and soybeans, and local cash grain bids to stay informed on market trends and pricing. Search articles by category, view detailed market analysis, and get weekend market reports to make informed farming and trading decisions.