example-data.com
Menu
Browse docs and collections

Overview

cars / #124

2023 Nissan Sentra

Nissan

USD112340.00

automatic · hybrid · 7848 mi · Brown

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 124,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2023,
  "trim": "Premium",
  "vin": "GR3VYF421DS96APCT",
  "color": "Brown",
  "mileage": 7848,
  "price": 112340,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Cummeratatown",
  "region": "Missouri",
  "countryAlpha2": "CL",
  "sellerUserId": 65,
  "isSold": false,
  "createdAt": "2024-09-13T13:07:33.817Z",
  "updatedAt": "2024-10-28T03:18:51.612Z"
}