example-data.com

sneakers / #24

Jordan Air Jordan 3 (Yellow/White)

Jordan Air Jordan 3 (Yellow/White)

Jordan

USD250.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/24"
)
sneaker = res.json()
{
  "id": 24,
  "brand": "Jordan",
  "model": "Air Jordan 3",
  "colorway": "Yellow/White",
  "style": "Training",
  "releaseDate": "2018-07-24",
  "retailPrice": 250,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-24/800/600",
  "sizesAvailable": [
    "5.5Y",
    "6Y",
    "6.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2018-07-24T03:30:18.955Z"
}
Draftbit