example-data.com
Menu
Browse docs and collections

Overview

cars / #118

2021 Ford Bronco

Ford

USD23820.00

manual · gas · 49784 mi · Brown

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 118,
  "make": "Ford",
  "model": "Bronco",
  "year": 2021,
  "trim": "Touring",
  "vin": "0DYLZR55TEL8HBUBZ",
  "color": "Brown",
  "mileage": 49784,
  "price": 23820,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Kenner",
  "region": "Ohio",
  "countryAlpha2": "FI",
  "sellerUserId": 239,
  "isSold": true,
  "createdAt": "2025-11-28T23:51:31.247Z",
  "updatedAt": "2025-12-29T00:03:10.983Z"
}