example-data.com

sneakers / #1

Nike Blazer Mid (Blue/Yellow)

Nike Blazer Mid (Blue/Yellow)

Nike

USD265.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/1"
)
sneaker = res.json()
{
  "id": 1,
  "brand": "Nike",
  "model": "Blazer Mid",
  "colorway": "Blue/Yellow",
  "style": "Lifestyle",
  "releaseDate": "2023-07-14",
  "retailPrice": 265,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-1/800/600",
  "sizesAvailable": [
    "3.5Y",
    "4Y",
    "4.5Y",
    "5Y",
    "5.5Y",
    "6Y",
    "6.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2023-07-14T03:55:17.628Z"
}
Draftbit