example-data.com

sneakers / #40

Nike Dunk Low (Tan/Navy)

Nike Dunk Low (Tan/Navy)

Nike

USD205.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/40"
)
sneaker = res.json()
{
  "id": 40,
  "brand": "Nike",
  "model": "Dunk Low",
  "colorway": "Tan/Navy",
  "style": "Lifestyle",
  "releaseDate": "2024-01-25",
  "retailPrice": 205,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-40/800/600",
  "sizesAvailable": [
    "5",
    "5.5",
    "6",
    "6.5",
    "7.5",
    "8",
    "9",
    "9.5",
    "10"
  ],
  "gender": "women",
  "createdAt": "2024-01-25T21:17:14.810Z"
}
Draftbit