example-data.com

sneakers / #20

Adidas Stan Smith (Cream/Brown/White)

Adidas Stan Smith (Cream/Brown/White)

Adidas

USD310.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/20"
)
sneaker = res.json()
{
  "id": 20,
  "brand": "Adidas",
  "model": "Stan Smith",
  "colorway": "Cream/Brown/White",
  "style": "Training",
  "releaseDate": "2017-01-19",
  "retailPrice": 310,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-20/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "9.5",
    "10",
    "10.5",
    "11"
  ],
  "gender": "men",
  "createdAt": "2017-01-19T15:00:00.216Z"
}
Draftbit