example-data.com
Menu
Browse docs and collections

Overview

cars / #182

2013 Nissan Sentra

Nissan

USD78270.00

automatic · gas · 232505 mi · Red

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 182,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2013,
  "trim": "Sport",
  "vin": "06YARH5EJNUXP18TN",
  "color": "Red",
  "mileage": 232505,
  "price": 78270,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Elgin",
  "region": "Florida",
  "countryAlpha2": "BR",
  "sellerUserId": 109,
  "isSold": true,
  "createdAt": "2024-09-01T19:11:44.124Z",
  "updatedAt": "2025-04-14T20:59:13.271Z"
}