example-data.com

sneakers / #6

Adidas Ultraboost (Blue/Black)

Adidas Ultraboost (Blue/Black)

Adidas

USD325.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/6"
)
sneaker = res.json()
{
  "id": 6,
  "brand": "Adidas",
  "model": "Ultraboost",
  "colorway": "Blue/Black",
  "style": "Trail",
  "releaseDate": "2018-10-19",
  "retailPrice": 325,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-6/800/600",
  "sizesAvailable": [
    "7",
    "8.5",
    "9.5",
    "11",
    "12"
  ],
  "gender": "unisex",
  "createdAt": "2018-10-19T10:02:21.972Z"
}
Draftbit