example-data.com

sneakers / #76

Nike Air Force 1 (Black/Yellow/White)

Nike Air Force 1 (Black/Yellow/White)

Nike

USD170.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/76"
)
sneaker = res.json()
{
  "id": 76,
  "brand": "Nike",
  "model": "Air Force 1",
  "colorway": "Black/Yellow/White",
  "style": "Training",
  "releaseDate": "2019-06-09",
  "retailPrice": 170,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-76/800/600",
  "sizesAvailable": [
    "5",
    "5.5",
    "6",
    "6.5",
    "7",
    "7.5",
    "8",
    "8.5",
    "9.5",
    "10"
  ],
  "gender": "women",
  "createdAt": "2019-06-09T22:16:48.758Z"
}
Draftbit