example-data.com

sneakers / #39

Reebok Nano X3 (Yellow/Pink)

Reebok Nano X3 (Yellow/Pink)

Reebok

USD250.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/39"
)
sneaker = res.json()
{
  "id": 39,
  "brand": "Reebok",
  "model": "Nano X3",
  "colorway": "Yellow/Pink",
  "style": "Training",
  "releaseDate": "2018-11-14",
  "retailPrice": 250,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-39/800/600",
  "sizesAvailable": [
    "3.5Y",
    "4Y",
    "5Y",
    "5.5Y",
    "6Y",
    "6.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2018-11-14T13:41:50.916Z"
}
Draftbit