example-data.com
Menu
Browse docs and collections

Overview

cars / #193

2026 Ford Escape

Ford

USD49360.00

automatic · gas · 4802 mi · Blue

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 193,
  "make": "Ford",
  "model": "Escape",
  "year": 2026,
  "trim": "Sport",
  "vin": "0F8W2SRMCG65S077U",
  "color": "Blue",
  "mileage": 4802,
  "price": 49360,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "West Darrellfield",
  "region": "Kentucky",
  "countryAlpha2": "BR",
  "sellerUserId": 155,
  "isSold": true,
  "createdAt": "2025-02-24T23:10:25.679Z",
  "updatedAt": "2025-08-05T20:05:17.370Z"
}