example-data.com

sneakers / #27

Reebok Question Mid (Cream/Green/Navy)

Reebok Question Mid (Cream/Green/Navy)

Reebok

USD280.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/27"
)
sneaker = res.json()
{
  "id": 27,
  "brand": "Reebok",
  "model": "Question Mid",
  "colorway": "Cream/Green/Navy",
  "style": "Lifestyle",
  "releaseDate": "2021-12-08",
  "retailPrice": 280,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-27/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "9",
    "9.5",
    "10",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "unisex",
  "createdAt": "2021-12-08T20:33:54.780Z"
}
Draftbit