example-data.com

sneakers / #51

Nike Cortez (Green/Navy/Black)

Nike Cortez (Green/Navy/Black)

Nike

USD150.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/51"
)
sneaker = res.json()
{
  "id": 51,
  "brand": "Nike",
  "model": "Cortez",
  "colorway": "Green/Navy/Black",
  "style": "Running",
  "releaseDate": "2025-02-03",
  "retailPrice": 150,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-51/800/600",
  "sizesAvailable": [
    "8",
    "8.5",
    "9.5",
    "10.5",
    "13"
  ],
  "gender": "men",
  "createdAt": "2025-02-03T11:44:27.471Z"
}
Draftbit