example-data.com

sneakers / #80

New Balance 327 (Green/Navy/Red)

New Balance 327 (Green/Navy/Red)

New Balance

USD135.00

Component variants

curl -sS \
  "https://example-data.com/api/v1/sneakers/80" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/sneakers/80"
);
const sneaker = await res.json();
import type { Sneaker } from "https://example-data.com/types/sneakers.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/sneakers/80"
);
const sneaker = (await res.json()) as Sneaker;
import requests

res = requests.get(
    "https://example-data.com/api/v1/sneakers/80"
)
sneaker = res.json()
{
  "id": 80,
  "brand": "New Balance",
  "model": "327",
  "colorway": "Green/Navy/Red",
  "style": "Trail",
  "releaseDate": "2025-11-03",
  "retailPrice": 135,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-80/800/600",
  "sizesAvailable": [
    "5",
    "7",
    "7.5",
    "8.5",
    "9"
  ],
  "gender": "women",
  "createdAt": "2025-11-03T15:00:03.670Z"
}
Draftbit