example-data.com

cars

cars

Page 2 of 9.

2018 Honda Civic

Honda

USD102490.00

cvt · electric · 75734 mi · Red

2013 Nissan Pathfinder

Nissan

USD65380.00

automatic · electric · 59524 mi · Gray

2013 Nissan Pathfinder

Nissan

USD30.00

automatic · gas · 169066 mi · Green

2024 Audi Q7

Audi

USD50020.00

automatic · gas · 12268 mi · Silver

2012 BMW iX

BMW

USD72720.00

automatic · gas · 75510 mi · Black

2024 Ford Bronco

Ford

USD58330.00

automatic · gas · 27855 mi · Green

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": 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",
    "next": "/api/v1/cars?page=3",
    "prev": "/api/v1/cars?page=1"
  }
}
Draftbit