example-data.com
Menu
Browse docs and collections

Overview

cars / #107

2024 Ford Bronco

Ford

USD38170.00

automatic · hybrid · 2363 mi · Green

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 107,
  "make": "Ford",
  "model": "Bronco",
  "year": 2024,
  "trim": "Premium",
  "vin": "3CLRTH208W70EUN19",
  "color": "Green",
  "mileage": 2363,
  "price": 38170,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "New Christaworth",
  "region": "Connecticut",
  "countryAlpha2": "ES",
  "sellerUserId": 54,
  "isSold": true,
  "createdAt": "2025-06-14T17:02:15.078Z",
  "updatedAt": "2025-12-01T14:34:12.004Z"
}