example-data.com

sneakers / #48

Reebok Question Mid (Tan/Gray)

Reebok Question Mid (Tan/Gray)

Reebok

USD245.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/48"
)
sneaker = res.json()
{
  "id": 48,
  "brand": "Reebok",
  "model": "Question Mid",
  "colorway": "Tan/Gray",
  "style": "Trail",
  "releaseDate": "2017-02-12",
  "retailPrice": 245,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-48/800/600",
  "sizesAvailable": [
    "7.5",
    "8.5",
    "9",
    "9.5",
    "10",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2017-02-12T16:23:13.331Z"
}
Draftbit