Overview

The Market Data API offers real-time and historical automotive market data. Users can explore trends across vehicle types and regions, track days of supply for inventory management, and gain insights into pricing dynamics.

CapabilitiesDescription
SupplyRetrieve days of supply data for different vehicle types and regions.
HistoricalGet historical price trends for specific vehicle models and makes.
SalesAccess sales volume data for different vehicle types and regions.
VehiclesRetrieve insights into how specific vehicle models and makes are trending in the market.
PricingGet market-specific valuations such as MSRP, trade-in values, wholesale prices, etc.

Days of Supply

Retrieve days of supply data for different vehicle types and regions. This data can help dealers manage inventory more effectively by providing insights into how long vehicles typically stay on the market.

{
  "daysOfSupply": {
    "type": "sedan",
    "region": "US",
    "startDate": "2022-01-01",
    "endDate": "2022-12-31",
    "data": [
      {
        "date": "2022-01-01",
        "daysSupply": 45
      },
      {
        "date": "2022-01-02",
        "daysSupply": 46
      },
      ...
    ]
  }
}

Get historical price trends for specific vehicle models and makes. This data can be useful for analyzing market trends and making pricing decisions.

{
  "priceTrends": {
    "make": "Ford",
    "model": "Explorer",
    "startDate": "2022-01-01",
    "endDate": "2022-12-31",
    "data": [
      {
        "date": "2022-01-01",
        "averagePrice": 25000
      },
      {
        "date": "2022-01-02",
        "averagePrice": 25500
      },
      ...
    ]
  }
}

Sales Volume Analysis

Access sales volume data for different vehicle types and regions. This data can provide insights into market demand and consumer preferences.

{
  "salesVolumeAnalysis": {
    "type": "sedan",
    "region": "US",
    "startDate": "2022-01-01",
    "endDate": "2022-12-31",
    "data": [
      {
        "date": "2022-01-01",
        "salesVolume": 10000
      },
      {
        "date": "2022-01-02",
        "salesVolume": 10500
      },
      ...
    ]
  }
}

Retrieve insights into how specific vehicle models and makes are trending in the market. This data can help businesses understand pricing dynamics, popularity, and availability.

{
  "vehicleTrends": {
    "make": "Ford",
    "model": "Explorer",
    "region": "US",
    "data": [
      {
        "date": "2022-01-01",
        "averagePrice": 25000,
        "salesVolume": 1000
      },
      {
        "date": "2022-01-02",
        "averagePrice": 25500,
        "salesVolume": 1050
      },
      ...
    ]
  }
}

Pricing Books

Get market-specific valuations such as MSRP, trade-in values, wholesale prices, private party estimates, and retail pricing, catering to different conditions and market positions of the vehicle.

Coming soon!