example-data.com
Menu
Browse docs and collections

Overview

cars / #101

2022 Ford Bronco

Ford

USD12460.00

automatic · gas · 23088 mi · Yellow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 101,
  "make": "Ford",
  "model": "Bronco",
  "year": 2022,
  "trim": "EX",
  "vin": "PT300EEEE99W9WB7E",
  "color": "Yellow",
  "mileage": 23088,
  "price": 12460,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Diamond Bar",
  "region": "Arizona",
  "countryAlpha2": "AE",
  "sellerUserId": 49,
  "isSold": true,
  "createdAt": "2024-07-17T10:16:15.242Z",
  "updatedAt": "2025-03-17T14:42:53.672Z"
}