example-data.com

sneakers / #4

New Balance 990v6 (Navy/Green/Black)

New Balance 990v6 (Navy/Green/Black)

New Balance

USD115.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/4"
)
sneaker = res.json()
{
  "id": 4,
  "brand": "New Balance",
  "model": "990v6",
  "colorway": "Navy/Green/Black",
  "style": "Skateboarding",
  "releaseDate": "2018-06-30",
  "retailPrice": 115,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-4/800/600",
  "sizesAvailable": [
    "7",
    "7.5",
    "8",
    "8.5",
    "9.5",
    "10",
    "10.5",
    "11",
    "12",
    "13"
  ],
  "gender": "men",
  "createdAt": "2018-06-30T03:18:36.408Z"
}
Draftbit