example-data.com

sneakers / #7

Jordan Air Jordan 3 (Yellow/Blue)

Jordan Air Jordan 3 (Yellow/Blue)

Jordan

USD340.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/7"
)
sneaker = res.json()
{
  "id": 7,
  "brand": "Jordan",
  "model": "Air Jordan 3",
  "colorway": "Yellow/Blue",
  "style": "Skateboarding",
  "releaseDate": "2022-09-07",
  "retailPrice": 340,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-7/800/600",
  "sizesAvailable": [
    "6",
    "8.5",
    "9",
    "9.5"
  ],
  "gender": "women",
  "createdAt": "2022-09-07T13:27:57.793Z"
}
Draftbit