example-data.com

sneakers / #65

Puma RS-X (Red/Cream)

Puma RS-X (Red/Cream)

Puma

USD215.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/65"
)
sneaker = res.json()
{
  "id": 65,
  "brand": "Puma",
  "model": "RS-X",
  "colorway": "Red/Cream",
  "style": "Skateboarding",
  "releaseDate": "2016-10-19",
  "retailPrice": 215,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-65/800/600",
  "sizesAvailable": [
    "3.5Y",
    "4Y",
    "5Y",
    "6.5Y",
    "7Y"
  ],
  "gender": "youth",
  "createdAt": "2016-10-19T21:48:34.682Z"
}
Draftbit