example-data.com

sneakers / #25

New Balance 550 (Navy/Yellow)

New Balance 550 (Navy/Yellow)

New Balance

USD110.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/25"
)
sneaker = res.json()
{
  "id": 25,
  "brand": "New Balance",
  "model": "550",
  "colorway": "Navy/Yellow",
  "style": "Lifestyle",
  "releaseDate": "2017-09-16",
  "retailPrice": 110,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-25/800/600",
  "sizesAvailable": [
    "5",
    "5.5",
    "6",
    "7",
    "8",
    "8.5",
    "9",
    "9.5"
  ],
  "gender": "women",
  "createdAt": "2017-09-16T13:40:05.541Z"
}
Draftbit