example-data.com

sneakers / #10

Jordan Air Jordan 5 (Blue/Tan/Navy)

Jordan Air Jordan 5 (Blue/Tan/Navy)

Jordan

USD115.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/10"
)
sneaker = res.json()
{
  "id": 10,
  "brand": "Jordan",
  "model": "Air Jordan 5",
  "colorway": "Blue/Tan/Navy",
  "style": "Basketball",
  "releaseDate": "2022-02-14",
  "retailPrice": 115,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-10/800/600",
  "sizesAvailable": [
    "4.5Y",
    "5Y",
    "5.5Y",
    "6.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2022-02-14T08:05:32.995Z"
}
Draftbit