example-data.com
Menu
Browse docs and collections

Overview

cars / #62

2016 Audi Q5

Audi

USD67600.00

automatic · gas · 66442 mi · Yellow

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/62"
);
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/62"
);
const car = (await res.json()) as Car;

Python example

import requests

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

Response

{
  "id": 62,
  "make": "Audi",
  "model": "Q5",
  "year": 2016,
  "trim": "Touring",
  "vin": "KEGAP19DL137CJBMC",
  "color": "Yellow",
  "mileage": 66442,
  "price": 67600,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Lake Stevefurt",
  "region": "Missouri",
  "countryAlpha2": "PT",
  "sellerUserId": 20,
  "isSold": false,
  "createdAt": "2025-08-30T22:54:54.223Z",
  "updatedAt": "2026-05-21T08:59:10.151Z"
}