example-data.com

sneakers / #42

Reebok Question Mid (Navy/Blue)

Reebok Question Mid (Navy/Blue)

Reebok

USD125.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/42"
)
sneaker = res.json()
{
  "id": 42,
  "brand": "Reebok",
  "model": "Question Mid",
  "colorway": "Navy/Blue",
  "style": "Skateboarding",
  "releaseDate": "2021-03-08",
  "retailPrice": 125,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-42/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "8",
    "8.5",
    "9.5",
    "10",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2021-03-08T01:19:43.017Z"
}
Draftbit