example-data.com

sneakers / #44

Reebok Classic Leather (White/Tan/Black)

Reebok Classic Leather (White/Tan/Black)

Reebok

USD150.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/44"
)
sneaker = res.json()
{
  "id": 44,
  "brand": "Reebok",
  "model": "Classic Leather",
  "colorway": "White/Tan/Black",
  "style": "Running",
  "releaseDate": "2019-06-28",
  "retailPrice": 150,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-44/800/600",
  "sizesAvailable": [
    "5",
    "6",
    "6.5",
    "7.5",
    "8.5",
    "9",
    "10"
  ],
  "gender": "women",
  "createdAt": "2019-06-28T15:26:42.132Z"
}
Draftbit