example-data.com

cars

cars

Page 3 of 9.

2023 Chevrolet Camaro

Chevrolet

USD9750.00

manual · gas · 40040 mi · Red

2020 Honda Pilot

Honda

USD35230.00

automatic · gas · 14320 mi · Green

2019 BMW X3

BMW

USD76790.00

automatic · gas · 49766 mi · Blue

2022 Tesla Cybertruck

Tesla

USD200.00

automatic · gas · 18618 mi · Green

2021 Honda Ridgeline

Honda

USD350.00

automatic · gas · 17434 mi · Red

2022 BMW i4

BMW

USD76030.00

automatic · gas · 74437 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": 49,
      "make": "Chevrolet",
      "model": "Camaro",
      "year": 2023,
      "trim": "EX",
      "vin": "05B44JHHFEXBDMXRK",
      "color": "Red",
      "mileage": 40040,
      "price": 9750,
      "currency": "USD",
      "transmission": "manual",
      "fuelType": "gas",
      "bodyType": "convertible",
      "listingType": "sale",
      "city": "Lake Grayson",
      "region": "Idaho",
      "countryAlpha2": "IN",
      "sellerUserId": 133,
      "isSold": true,
      "createdAt": "2025-12-28T11:01:39.378Z",
      "updatedAt": "2026-04-04T09:58:48.498Z"
    },
    {
      "id": 50,
      "make": "Honda",
      "model": "Pilot",
      "year": 2020,
      "trim": "EX",
      "vin": "WFB874SR6HF2NEU5F",
      "color": "Green",
      "mileage": 14320,
      "price": 35230,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "suv",
      "listingType": "sale",
      "city": "Port Keagan",
      "region": "Kansas",
      "countryAlpha2": "NG",
      "sellerUserId": 157,
      "isSold": false,
      "createdAt": "2024-07-26T02:33:25.275Z",
      "updatedAt": "2025-12-25T02:47:02.818Z"
    },
    {
      "id": 51,
      "make": "BMW",
      "model": "X3",
      "year": 2019,
      "trim": "LX",
      "vin": "HTGAE8D4G4HV0L99Y",
      "color": "Blue",
      "mileage": 49766,
      "price": 76790,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "coupe",
      "listingType": "sale",
      "city": "Schaeferboro",
      "region": "New York",
      "countryAlpha2": "NO",
      "sellerUserId": 225,
      "isSold": false,
      "createdAt": "2026-02-28T14:23:18.381Z",
      "updatedAt": "2026-05-11T08:55:34.878Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=3",
    "next": "/api/v1/cars?page=4",
    "prev": "/api/v1/cars?page=2"
  }
}
Draftbit