example-data.com
Menu
Browse docs and collections

cars

cars

Page 3 of 9.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars?limit=25"

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car, ListEnvelope } from "./types/cars";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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&limit=24",
    "first": "/api/v1/cars?page=1&limit=24",
    "last": "/api/v1/cars?page=9&limit=24",
    "next": "/api/v1/cars?page=4&limit=24",
    "prev": "/api/v1/cars?page=2&limit=24"
  }
}