cars
cars
Page 6 of 9.
Overview
-
2017 Honda HR-V
Honda
USD27470.00
-
2022 Tesla Cybertruck
Tesla
USD50.00
-
2024 Ford Maverick
Ford
USD104590.00
-
2023 Nissan Sentra
Nissan
USD112340.00
-
2022 Mercedes S-Class
Mercedes
USD99960.00
-
2026 Honda HR-V
Honda
USD360.00
-
2016 Honda Odyssey
Honda
USD29180.00
-
2013 Tesla Model S
Tesla
USD55780.00
-
2011 Tesla Model X
Tesla
USD46690.00
-
2026 Audi e-tron
Audi
USD120.00
-
2024 Chevrolet Equinox
Chevrolet
USD76870.00
-
2010 BMW M3
BMW
USD103110.00
-
2018 Honda CR-V
Honda
USD36390.00
-
2010 Ford Explorer
Ford
USD68480.00
-
2026 Chevrolet Traverse
Chevrolet
USD36480.00
-
2021 Nissan Sentra
Nissan
USD102420.00
-
2017 Ford Edge
Ford
USD280.00
-
2013 Mercedes C-Class
Mercedes
USD150.00
-
2012 Audi S5
Audi
USD74270.00
-
2020 Toyota Tacoma
Toyota
USD290.00
-
2021 Mercedes EQS
Mercedes
USD108870.00
-
2014 BMW 5 Series
BMW
USD83790.00
-
2015 Chevrolet Tahoe
Chevrolet
USD100.00
-
2013 Nissan Rogue
Nissan
USD49640.00
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": 121,
"make": "Honda",
"model": "HR-V",
"year": 2017,
"trim": "Sport",
"vin": "P3NP503BPLV90NT64",
"color": "Silver",
"mileage": 92283,
"price": 27470,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Irvingmouth",
"region": "Iowa",
"countryAlpha2": "EG",
"sellerUserId": 52,
"isSold": false,
"createdAt": "2024-11-06T23:42:14.551Z",
"updatedAt": "2024-11-09T13:05:33.430Z"
},
{
"id": 122,
"make": "Tesla",
"model": "Cybertruck",
"year": 2022,
"trim": null,
"vin": "NWA85NV7GNC5J72G7",
"color": "Gray",
"mileage": 76641,
"price": 50,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "rent",
"city": "North Mitchell",
"region": "Minnesota",
"countryAlpha2": "TH",
"sellerUserId": 58,
"isSold": false,
"createdAt": "2025-03-22T19:20:34.728Z",
"updatedAt": "2025-08-27T09:04:28.804Z"
},
{
"id": 123,
"make": "Ford",
"model": "Maverick",
"year": 2024,
"trim": null,
"vin": "LBKFVTWJWMK83XZAU",
"color": "Black",
"mileage": 10745,
"price": 104590,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Zulaufchester",
"region": "Washington",
"countryAlpha2": "PH",
"sellerUserId": 178,
"isSold": false,
"createdAt": "2024-06-09T11:44:55.308Z",
"updatedAt": "2025-10-04T16:39:48.971Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/cars?page=6&limit=24",
"first": "/api/v1/cars?page=1&limit=24",
"last": "/api/v1/cars?page=9&limit=24",
"next": "/api/v1/cars?page=7&limit=24",
"prev": "/api/v1/cars?page=5&limit=24"
}
}