example-data.com

sneakers / #21

Adidas Stan Smith (Tan/Red)

Adidas Stan Smith (Tan/Red)

Adidas

USD145.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/21"
)
sneaker = res.json()
{
  "id": 21,
  "brand": "Adidas",
  "model": "Stan Smith",
  "colorway": "Tan/Red",
  "style": "Basketball",
  "releaseDate": "2024-10-10",
  "retailPrice": 145,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-21/800/600",
  "sizesAvailable": [
    "6",
    "8",
    "8.5",
    "9",
    "9.5"
  ],
  "gender": "women",
  "createdAt": "2024-10-10T11:05:48.119Z"
}
Draftbit