MVA Vehicle Sales Counts by Month for Calendar Year 2002 through June 2024
The number of new and used vehicles and the sales dollars respectively sold by month.
MDOT MVA’s Customer Connect modernization project, implemented in July 2020, has increased the amount of data that is collected and used to calculate car sales. This data is updated in real time and may fluctuate based on external factors, including electronic submissions from dealers and other vendors.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"opendata-maryland-gov/mva-vehicle-sales-counts-by-month-for-calendar-un65-7ipd\".\"mva_vehicle_sales_counts_by_month_for_calendar\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.