example-data.com

sneakers / #68

Reebok Club C (Red/Brown)

Reebok Club C (Red/Brown)

Reebok

USD190.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/68"
)
sneaker = res.json()
{
  "id": 68,
  "brand": "Reebok",
  "model": "Club C",
  "colorway": "Red/Brown",
  "style": "Basketball",
  "releaseDate": "2017-02-12",
  "retailPrice": 190,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-68/800/600",
  "sizesAvailable": [
    "7",
    "9",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2017-02-12T20:41:55.045Z"
}
Draftbit