example-data.com
Menu
Browse docs and collections

cars

cars

Page 2 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": 25,
      "make": "Honda",
      "model": "Civic",
      "year": 2018,
      "trim": "EX",
      "vin": "XSKDH6WDCTBJWMY11",
      "color": "Red",
      "mileage": 75734,
      "price": 102490,
      "currency": "USD",
      "transmission": "cvt",
      "fuelType": "electric",
      "bodyType": "sedan",
      "listingType": "sale",
      "city": "Placentia",
      "region": "Virginia",
      "countryAlpha2": "DE",
      "sellerUserId": 228,
      "isSold": false,
      "createdAt": "2024-11-27T06:29:46.651Z",
      "updatedAt": "2026-01-05T19:31:52.947Z"
    },
    {
      "id": 26,
      "make": "Nissan",
      "model": "Pathfinder",
      "year": 2013,
      "trim": "EX",
      "vin": "SS3N2D3W6EWFANF7A",
      "color": "Gray",
      "mileage": 59524,
      "price": 65380,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "electric",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "New Kelvin",
      "region": "Iowa",
      "countryAlpha2": "JP",
      "sellerUserId": 203,
      "isSold": false,
      "createdAt": "2026-02-18T07:36:39.605Z",
      "updatedAt": "2026-04-18T05:42:46.036Z"
    },
    {
      "id": 27,
      "make": "Nissan",
      "model": "Pathfinder",
      "year": 2013,
      "trim": null,
      "vin": "7UU8W9VDWTX6DYLC8",
      "color": "Green",
      "mileage": 169066,
      "price": 30,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "suv",
      "listingType": "rent",
      "city": "Krajcikville",
      "region": "South Carolina",
      "countryAlpha2": "TR",
      "sellerUserId": 178,
      "isSold": false,
      "createdAt": "2024-08-21T21:55:40.518Z",
      "updatedAt": "2025-11-22T05:26:14.389Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=2&limit=24",
    "first": "/api/v1/cars?page=1&limit=24",
    "last": "/api/v1/cars?page=9&limit=24",
    "next": "/api/v1/cars?page=3&limit=24",
    "prev": "/api/v1/cars?page=1&limit=24"
  }
}