example-data.com

sneakers / #52

Reebok Classic Leather (Green/Cream/Tan)

Reebok Classic Leather (Green/Cream/Tan)

Reebok

USD140.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/52"
)
sneaker = res.json()
{
  "id": 52,
  "brand": "Reebok",
  "model": "Classic Leather",
  "colorway": "Green/Cream/Tan",
  "style": "Training",
  "releaseDate": "2016-11-19",
  "retailPrice": 140,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-52/800/600",
  "sizesAvailable": [
    "8.5",
    "9",
    "9.5",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2016-11-19T04:14:05.273Z"
}
Draftbit