example-data.com

sneakers / #63

Nike Air Max 90 (Red/Pink)

Nike Air Max 90 (Red/Pink)

Nike

USD175.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/63"
)
sneaker = res.json()
{
  "id": 63,
  "brand": "Nike",
  "model": "Air Max 90",
  "colorway": "Red/Pink",
  "style": "Basketball",
  "releaseDate": "2024-02-08",
  "retailPrice": 175,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-63/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "8",
    "8.5",
    "9",
    "9.5",
    "10",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2024-02-08T05:18:59.085Z"
}
Draftbit