example-data.com
Menu
Browse docs and collections

Overview

cars / #30

2024 Ford Bronco

Ford

USD58330.00

automatic · gas · 27855 mi · Green

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "make": "Ford",
  "model": "Bronco",
  "year": 2024,
  "trim": null,
  "vin": "ZS9M6RKAZSRFC5ZL9",
  "color": "Green",
  "mileage": 27855,
  "price": 58330,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Jaylanville",
  "region": "Arkansas",
  "countryAlpha2": "CO",
  "sellerUserId": 42,
  "isSold": true,
  "createdAt": "2025-07-17T10:11:29.845Z",
  "updatedAt": "2026-05-05T15:47:14.398Z"
}