example-data.com

sneakers / #41

New Balance 990v6 (Gray/Green/Brown)

New Balance 990v6 (Gray/Green/Brown)

New Balance

USD140.00

Component variants

curl -sS \
  "https://example-data.com/api/v1/sneakers/41" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/sneakers/41"
);
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/41"
);
const sneaker = (await res.json()) as Sneaker;
import requests

res = requests.get(
    "https://example-data.com/api/v1/sneakers/41"
)
sneaker = res.json()
{
  "id": 41,
  "brand": "New Balance",
  "model": "990v6",
  "colorway": "Gray/Green/Brown",
  "style": "Training",
  "releaseDate": "2024-11-06",
  "retailPrice": 140,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-41/800/600",
  "sizesAvailable": [
    "6.5",
    "7.5",
    "8",
    "8.5",
    "10"
  ],
  "gender": "women",
  "createdAt": "2024-11-06T13:04:58.800Z"
}
Draftbit