example-data.com

sneakers / #45

Adidas NMD R1 (Yellow/Navy/Red)

Adidas NMD R1 (Yellow/Navy/Red)

Adidas

USD140.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/45"
)
sneaker = res.json()
{
  "id": 45,
  "brand": "Adidas",
  "model": "NMD R1",
  "colorway": "Yellow/Navy/Red",
  "style": "Running",
  "releaseDate": "2024-02-25",
  "retailPrice": 140,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-45/800/600",
  "sizesAvailable": [
    "7.5",
    "8",
    "8.5",
    "11.5"
  ],
  "gender": "men",
  "createdAt": "2024-02-25T23:12:31.160Z"
}
Draftbit