example-data.com

sneakers / #74

Reebok Club C (Navy/Green)

Reebok Club C (Navy/Green)

Reebok

USD110.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/74"
)
sneaker = res.json()
{
  "id": 74,
  "brand": "Reebok",
  "model": "Club C",
  "colorway": "Navy/Green",
  "style": "Running",
  "releaseDate": "2024-02-25",
  "retailPrice": 110,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-74/800/600",
  "sizesAvailable": [
    "7.5",
    "8",
    "8.5",
    "9.5",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "unisex",
  "createdAt": "2024-02-25T01:59:36.006Z"
}
Draftbit