example-data.com

sneakers / #77

Reebok Club C (Pink/Gray)

Reebok Club C (Pink/Gray)

Reebok

USD310.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/77"
)
sneaker = res.json()
{
  "id": 77,
  "brand": "Reebok",
  "model": "Club C",
  "colorway": "Pink/Gray",
  "style": "Skateboarding",
  "releaseDate": "2023-02-25",
  "retailPrice": 310,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-77/800/600",
  "sizesAvailable": [
    "3.5Y",
    "4Y",
    "4.5Y",
    "5.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2023-02-25T02:18:29.997Z"
}
Draftbit