example-data.com

sneakers / #75

Reebok Classic Leather (Brown/Red)

Reebok Classic Leather (Brown/Red)

Reebok

USD95.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/75"
)
sneaker = res.json()
{
  "id": 75,
  "brand": "Reebok",
  "model": "Classic Leather",
  "colorway": "Brown/Red",
  "style": "Running",
  "releaseDate": "2021-06-11",
  "retailPrice": 95,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-75/800/600",
  "sizesAvailable": [
    "5",
    "5.5",
    "6",
    "6.5",
    "7",
    "7.5",
    "8",
    "8.5",
    "9",
    "9.5",
    "10"
  ],
  "gender": "women",
  "createdAt": "2021-06-11T19:51:31.774Z"
}
Draftbit