example-data.com

sneakers / #32

Jordan Air Jordan 11 (Yellow/Pink)

Jordan Air Jordan 11 (Yellow/Pink)

Jordan

USD230.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/32"
)
sneaker = res.json()
{
  "id": 32,
  "brand": "Jordan",
  "model": "Air Jordan 11",
  "colorway": "Yellow/Pink",
  "style": "Trail",
  "releaseDate": "2024-06-04",
  "retailPrice": 230,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-32/800/600",
  "sizesAvailable": [
    "7",
    "8",
    "8.5",
    "9.5",
    "10",
    "10.5",
    "11.5",
    "13"
  ],
  "gender": "unisex",
  "createdAt": "2024-06-04T12:40:48.253Z"
}
Draftbit