example-data.com

cars

cars

Browse 200 cars records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

2017 Hyundai Santa Fe

Hyundai

USD45060.00

automatic · gas · 160265 mi · Brown

2022 Toyota Tacoma

Toyota

USD89270.00

automatic · gas · 32114 mi · Silver

2017 Tesla Cybertruck

Tesla

USD65050.00

automatic · gas · 98280 mi · Green

2010 Hyundai Kona

Hyundai

USD18850.00

automatic · gas · 213148 mi · Yellow

2021 Toyota Corolla

Toyota

USD320.00

automatic · gas · 46590 mi · Blue

2011 Honda Ridgeline

Honda

USD8920.00

automatic · gas · 102708 mi · Yellow

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/cars?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/cars?limit=25"
);
const { data, meta } = await res.json();
import type { Car, ListEnvelope } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Car>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "make": "Hyundai",
      "model": "Santa Fe",
      "year": 2017,
      "trim": "Limited",
      "vin": "D0ZR08F8571HZFGPL",
      "color": "Brown",
      "mileage": 160265,
      "price": 45060,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "suv",
      "listingType": "sale",
      "city": "Cypress",
      "region": "Oregon",
      "countryAlpha2": "KE",
      "sellerUserId": 176,
      "isSold": false,
      "createdAt": "2025-09-20T23:32:17.701Z",
      "updatedAt": "2025-10-21T08:31:42.231Z"
    },
    {
      "id": 2,
      "make": "Toyota",
      "model": "Tacoma",
      "year": 2022,
      "trim": "Sport",
      "vin": "1J2LH7NEV4PEFZ8J9",
      "color": "Silver",
      "mileage": 32114,
      "price": 89270,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "West Alexandra",
      "region": "Nebraska",
      "countryAlpha2": "BR",
      "sellerUserId": 208,
      "isSold": false,
      "createdAt": "2025-12-25T09:23:48.580Z",
      "updatedAt": "2026-01-21T22:32:14.957Z"
    },
    {
      "id": 3,
      "make": "Tesla",
      "model": "Cybertruck",
      "year": 2017,
      "trim": "Premium",
      "vin": "UHWR6X8CHWUH2A20F",
      "color": "Green",
      "mileage": 98280,
      "price": 65050,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "sedan",
      "listingType": "sale",
      "city": "Port Rubye",
      "region": "Massachusetts",
      "countryAlpha2": "FJ",
      "sellerUserId": 148,
      "isSold": false,
      "createdAt": "2025-05-09T10:45:13.418Z",
      "updatedAt": "2026-04-21T20:41:46.417Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/cars?page=1",
    "first": "/api/v1/cars?page=1",
    "last": "/api/v1/cars?page=8",
    "next": "/api/v1/cars?page=2",
    "prev": null
  }
}

View full response →

Draftbit