example-data.com

sneakers / #43

Adidas Stan Smith (Black/Navy/Green)

Adidas Stan Smith (Black/Navy/Green)

Adidas

USD205.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/43"
)
sneaker = res.json()
{
  "id": 43,
  "brand": "Adidas",
  "model": "Stan Smith",
  "colorway": "Black/Navy/Green",
  "style": "Training",
  "releaseDate": "2025-01-17",
  "retailPrice": 205,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-43/800/600",
  "sizesAvailable": [
    "9",
    "9.5",
    "11",
    "11.5"
  ],
  "gender": "unisex",
  "createdAt": "2025-01-17T22:58:42.310Z"
}
Draftbit