example-data.com

cars

cars

Page 4 of 9.

2016 Toyota Tundra

Toyota

USD109940.00

automatic · gas · 70975 mi · Brown

2014 Mercedes AMG GT

Mercedes

USD82450.00

automatic · gas · 180220 mi · Beige

2022 Tesla Model Y

Tesla

USD66710.00

automatic · gas · 35673 mi · Silver

2022 Chevrolet Suburban

Chevrolet

USD100860.00

automatic · diesel · 67181 mi · Beige

2017 Chevrolet Malibu

Chevrolet

USD120.00

cvt · gas · 76863 mi · Gray

2021 Audi Q7

Audi

USD390.00

automatic · electric · 9258 mi · Brown

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": 73,
      "make": "Toyota",
      "model": "Tundra",
      "year": 2016,
      "trim": null,
      "vin": "AGDZRAKGN0MABWKEE",
      "color": "Brown",
      "mileage": 70975,
      "price": 109940,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "North Kavonfort",
      "region": "Connecticut",
      "countryAlpha2": "PK",
      "sellerUserId": 81,
      "isSold": false,
      "createdAt": "2025-01-21T17:47:24.913Z",
      "updatedAt": "2025-06-02T01:51:14.929Z"
    },
    {
      "id": 74,
      "make": "Mercedes",
      "model": "AMG GT",
      "year": 2014,
      "trim": null,
      "vin": "53798PBF2V6N4MY7H",
      "color": "Beige",
      "mileage": 180220,
      "price": 82450,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "Onastad",
      "region": "Nevada",
      "countryAlpha2": "MX",
      "sellerUserId": 103,
      "isSold": false,
      "createdAt": "2024-06-19T12:42:19.023Z",
      "updatedAt": "2025-05-31T07:18:07.591Z"
    },
    {
      "id": 75,
      "make": "Tesla",
      "model": "Model Y",
      "year": 2022,
      "trim": "Platinum",
      "vin": "4G03LVZ18LV9HN2FG",
      "color": "Silver",
      "mileage": 35673,
      "price": 66710,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "hatchback",
      "listingType": "sale",
      "city": "East Estell",
      "region": "Pennsylvania",
      "countryAlpha2": "ZA",
      "sellerUserId": 244,
      "isSold": true,
      "createdAt": "2024-08-15T15:46:01.697Z",
      "updatedAt": "2025-01-27T11:33:20.031Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=4",
    "next": "/api/v1/cars?page=5",
    "prev": "/api/v1/cars?page=3"
  }
}
Draftbit