example-data.com
Menu
Browse docs and collections

Overview

cars / #83

2021 Chevrolet Camaro

Chevrolet

USD105710.00

cvt · gas · 70865 mi · Red

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/83" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/83"
);
const car = 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 } from "./types/cars";

const res = await fetch(
  "https://example-data.com/api/v1/cars/83"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/83"
)
car = res.json()

Response

{
  "id": 83,
  "make": "Chevrolet",
  "model": "Camaro",
  "year": 2021,
  "trim": null,
  "vin": "WE4N8NDE5F8BWPA4K",
  "color": "Red",
  "mileage": 70865,
  "price": 105710,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "South Charleycester",
  "region": "Arkansas",
  "countryAlpha2": "MA",
  "sellerUserId": 224,
  "isSold": false,
  "createdAt": "2026-03-16T14:22:18.712Z",
  "updatedAt": "2026-03-29T06:02:07.454Z"
}