example-data.com
Menu
Browse docs and collections

Overview

cars / #198

2021 Ford F-150

Ford

USD40290.00

automatic · electric · 77436 mi · Yellow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 198,
  "make": "Ford",
  "model": "F-150",
  "year": 2021,
  "trim": "Sport",
  "vin": "1AYWH2MWHAP03R79P",
  "color": "Yellow",
  "mileage": 77436,
  "price": 40290,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Vivianberg",
  "region": "Maine",
  "countryAlpha2": "AT",
  "sellerUserId": 19,
  "isSold": true,
  "createdAt": "2025-06-07T03:49:29.000Z",
  "updatedAt": "2025-09-20T20:28:39.987Z"
}