example-data.com

cars

cars

Page 9 of 9.

2026 Ford Escape

Ford

USD49360.00

automatic · gas · 4802 mi · Blue

2011 Tesla Model Y

Tesla

USD108390.00

automatic · gas · 203357 mi · Beige

2015 Audi A6

Audi

USD8720.00

automatic · gas · 98859 mi · White

2022 Toyota Tundra

Toyota

USD21470.00

manual · diesel · 66959 mi · Gray

2025 Toyota Tacoma

Toyota

USD22580.00

automatic · gas · 10419 mi · Brown

2021 Ford F-150

Ford

USD40290.00

automatic · electric · 77436 mi · Yellow

Showing first 6 of 8 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": 193,
      "make": "Ford",
      "model": "Escape",
      "year": 2026,
      "trim": "Sport",
      "vin": "0F8W2SRMCG65S077U",
      "color": "Blue",
      "mileage": 4802,
      "price": 49360,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "sedan",
      "listingType": "sale",
      "city": "West Darrellfield",
      "region": "Kentucky",
      "countryAlpha2": "BR",
      "sellerUserId": 155,
      "isSold": true,
      "createdAt": "2025-02-24T23:10:25.679Z",
      "updatedAt": "2025-08-05T20:05:17.370Z"
    },
    {
      "id": 194,
      "make": "Tesla",
      "model": "Model Y",
      "year": 2011,
      "trim": null,
      "vin": "PJ6LK94K6S857TF8H",
      "color": "Beige",
      "mileage": 203357,
      "price": 108390,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "suv",
      "listingType": "sale",
      "city": "San Luis Obispo",
      "region": "Iowa",
      "countryAlpha2": "PK",
      "sellerUserId": 31,
      "isSold": false,
      "createdAt": "2026-02-26T17:30:22.109Z",
      "updatedAt": "2026-05-10T16:30:15.764Z"
    },
    {
      "id": 195,
      "make": "Audi",
      "model": "A6",
      "year": 2015,
      "trim": null,
      "vin": "9WC8R1NMZ7HH5TR1X",
      "color": "White",
      "mileage": 98859,
      "price": 8720,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "gas",
      "bodyType": "suv",
      "listingType": "sale",
      "city": "Port Albinstead",
      "region": "Maryland",
      "countryAlpha2": "NZ",
      "sellerUserId": 114,
      "isSold": false,
      "createdAt": "2025-09-13T15:24:51.257Z",
      "updatedAt": "2025-10-02T14:06:05.074Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=9",
    "next": null,
    "prev": "/api/v1/cars?page=8"
  }
}
Draftbit