example-data.com

sneakers / #47

Puma Suede Classic (Yellow/Tan/Red)

Puma Suede Classic (Yellow/Tan/Red)

Puma

USD100.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/47"
)
sneaker = res.json()
{
  "id": 47,
  "brand": "Puma",
  "model": "Suede Classic",
  "colorway": "Yellow/Tan/Red",
  "style": "Running",
  "releaseDate": "2024-10-06",
  "retailPrice": 100,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-47/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "8",
    "8.5",
    "9",
    "9.5",
    "10",
    "11.5",
    "12",
    "13"
  ],
  "gender": "unisex",
  "createdAt": "2024-10-06T11:25:43.705Z"
}
Draftbit