Skip to content

Data Feeds

GET Auth required

Downloads bulk vehicle data as a ZIP archive containing CSV data feed files. You must subscribe to the Data Feed product through your dashboard before using this endpoint.

Terminal window
curl "https://carapi.app/api/data-feeds/download" \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE" \
-o vehicle-data.zip
  • Check last-updated first: Use /api/data-feeds/last-updated before downloading to avoid re-downloading unchanged data.
  • Stream large responses: The ZIP file can be large — use streaming downloads rather than loading the full response into memory.

GET Auth required

Returns the last modified timestamp of the data feed. All times are United States Eastern Standard Time (EST).

Terminal window
curl "https://carapi.app/api/data-feeds/last-updated" \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"
{
"last_updated": "2026-06-15 03:00:00"
}