example-data.com

sneakers / #5

Adidas Stan Smith (Yellow/Navy)

Adidas Stan Smith (Yellow/Navy)

Adidas

USD150.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/5"
)
sneaker = res.json()
{
  "id": 5,
  "brand": "Adidas",
  "model": "Stan Smith",
  "colorway": "Yellow/Navy",
  "style": "Trail",
  "releaseDate": "2022-01-20",
  "retailPrice": 150,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-5/800/600",
  "sizesAvailable": [
    "8",
    "8.5",
    "9",
    "9.5",
    "10",
    "10.5",
    "11.5",
    "12"
  ],
  "gender": "unisex",
  "createdAt": "2022-01-20T00:49:36.510Z"
}
Draftbit