example-data.com

sneakers / #79

New Balance 550 (Yellow/Cream/Tan)

New Balance 550 (Yellow/Cream/Tan)

New Balance

USD160.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/79"
)
sneaker = res.json()
{
  "id": 79,
  "brand": "New Balance",
  "model": "550",
  "colorway": "Yellow/Cream/Tan",
  "style": "Running",
  "releaseDate": "2017-12-24",
  "retailPrice": 160,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-79/800/600",
  "sizesAvailable": [
    "5",
    "5.5",
    "6.5",
    "7",
    "7.5",
    "8",
    "9",
    "9.5",
    "10"
  ],
  "gender": "women",
  "createdAt": "2017-12-24T16:00:46.566Z"
}
Draftbit