example-data.com
Menu
Browse docs and collections

Overview

cars / #27

2013 Nissan Pathfinder

Nissan

USD30.00

automatic · gas · 169066 mi · Green

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 27,
  "make": "Nissan",
  "model": "Pathfinder",
  "year": 2013,
  "trim": null,
  "vin": "7UU8W9VDWTX6DYLC8",
  "color": "Green",
  "mileage": 169066,
  "price": 30,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "Krajcikville",
  "region": "South Carolina",
  "countryAlpha2": "TR",
  "sellerUserId": 178,
  "isSold": false,
  "createdAt": "2024-08-21T21:55:40.518Z",
  "updatedAt": "2025-11-22T05:26:14.389Z"
}