example-data.com

sneakers / #3

Reebok Club C (Tan/Blue/Gray)

Reebok Club C (Tan/Blue/Gray)

Reebok

USD130.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/3"
)
sneaker = res.json()
{
  "id": 3,
  "brand": "Reebok",
  "model": "Club C",
  "colorway": "Tan/Blue/Gray",
  "style": "Lifestyle",
  "releaseDate": "2019-06-11",
  "retailPrice": 130,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-3/800/600",
  "sizesAvailable": [
    "3.5Y",
    "4Y",
    "6Y",
    "6.5Y"
  ],
  "gender": "youth",
  "createdAt": "2019-06-11T11:14:22.948Z"
}
Draftbit