example-data.com

cars

cars

Page 7 of 9.

2017 Chevrolet Traverse

Chevrolet

USD114500.00

automatic · hybrid · 45269 mi · Yellow

2015 Toyota Highlander

Toyota

USD98920.00

cvt · gas · 99611 mi · White

2021 Nissan Altima

Nissan

USD85110.00

automatic · diesel · 50803 mi · Yellow

2017 Audi A6

Audi

USD107040.00

cvt · gas · 15816 mi · White

2012 Honda HR-V

Honda

USD109640.00

automatic · hybrid · 139958 mi · White

2011 Chevrolet Suburban

Chevrolet

USD14900.00

automatic · electric · 19295 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": 145,
      "make": "Chevrolet",
      "model": "Traverse",
      "year": 2017,
      "trim": "Platinum",
      "vin": "H1DHZXTV07Z7VVM4E",
      "color": "Yellow",
      "mileage": 45269,
      "price": 114500,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "hybrid",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "West Margret",
      "region": "Alaska",
      "countryAlpha2": "PL",
      "sellerUserId": 181,
      "isSold": false,
      "createdAt": "2025-09-27T07:08:31.139Z",
      "updatedAt": "2026-05-09T08:40:37.464Z"
    },
    {
      "id": 146,
      "make": "Toyota",
      "model": "Highlander",
      "year": 2015,
      "trim": null,
      "vin": "MKRK6K352JDNVTGEC",
      "color": "White",
      "mileage": 99611,
      "price": 98920,
      "currency": "USD",
      "transmission": "cvt",
      "fuelType": "gas",
      "bodyType": "hatchback",
      "listingType": "sale",
      "city": "Collierstad",
      "region": "West Virginia",
      "countryAlpha2": "KE",
      "sellerUserId": 118,
      "isSold": false,
      "createdAt": "2025-02-20T03:22:33.988Z",
      "updatedAt": "2025-06-15T21:55:33.835Z"
    },
    {
      "id": 147,
      "make": "Nissan",
      "model": "Altima",
      "year": 2021,
      "trim": "SE",
      "vin": "C5NM5RG2TD3168TMB",
      "color": "Yellow",
      "mileage": 50803,
      "price": 85110,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "diesel",
      "bodyType": "truck",
      "listingType": "sale",
      "city": "Adelafurt",
      "region": "Illinois",
      "countryAlpha2": "SA",
      "sellerUserId": 93,
      "isSold": false,
      "createdAt": "2025-02-28T03:59:19.376Z",
      "updatedAt": "2025-06-23T21:00:37.779Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=7",
    "next": "/api/v1/cars?page=8",
    "prev": "/api/v1/cars?page=6"
  }
}
Draftbit