example-data.com

cars

cars

Page 5 of 9.

2015 Toyota Tundra

Toyota

USD250.00

automatic · electric · 70342 mi · Black

2013 BMW 5 Series

BMW

USD5170.00

automatic · electric · 86696 mi · Blue

2020 Mercedes E-Class

Mercedes

USD27010.00

manual · electric · 65769 mi · Beige

2017 Chevrolet Suburban

Chevrolet

USD87570.00

manual · diesel · 36802 mi · Blue

2022 Ford Bronco

Ford

USD12460.00

automatic · gas · 23088 mi · Yellow

2016 Hyundai Elantra

Hyundai

USD61570.00

automatic · diesel · 62391 mi · Silver

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": 97,
      "make": "Toyota",
      "model": "Tundra",
      "year": 2015,
      "trim": null,
      "vin": "4964BEKM0NS32VGZW",
      "color": "Black",
      "mileage": 70342,
      "price": 250,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "electric",
      "bodyType": "truck",
      "listingType": "rent",
      "city": "Emeraldshire",
      "region": "Indiana",
      "countryAlpha2": "TR",
      "sellerUserId": 183,
      "isSold": false,
      "createdAt": "2025-03-05T13:03:51.044Z",
      "updatedAt": "2026-05-18T22:07:02.302Z"
    },
    {
      "id": 98,
      "make": "BMW",
      "model": "5 Series",
      "year": 2013,
      "trim": null,
      "vin": "B4E4CWWM0AZY3X5HS",
      "color": "Blue",
      "mileage": 86696,
      "price": 5170,
      "currency": "USD",
      "transmission": "automatic",
      "fuelType": "electric",
      "bodyType": "coupe",
      "listingType": "sale",
      "city": "North Anika",
      "region": "Nebraska",
      "countryAlpha2": "MX",
      "sellerUserId": 105,
      "isSold": false,
      "createdAt": "2024-09-12T21:28:38.630Z",
      "updatedAt": "2026-03-13T04:56:06.146Z"
    },
    {
      "id": 99,
      "make": "Mercedes",
      "model": "E-Class",
      "year": 2020,
      "trim": "Touring",
      "vin": "HCF6S0P68GMYLYTCC",
      "color": "Beige",
      "mileage": 65769,
      "price": 27010,
      "currency": "USD",
      "transmission": "manual",
      "fuelType": "electric",
      "bodyType": "coupe",
      "listingType": "sale",
      "city": "Port Robertafort",
      "region": "Louisiana",
      "countryAlpha2": "US",
      "sellerUserId": 5,
      "isSold": false,
      "createdAt": "2025-07-12T09:23:18.375Z",
      "updatedAt": "2025-12-28T22:30:06.512Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/cars?page=5",
    "next": "/api/v1/cars?page=6",
    "prev": "/api/v1/cars?page=4"
  }
}
Draftbit