example-data.com

sneakers / #23

Adidas Samba (Cream/Navy/Gray)

Adidas Samba (Cream/Navy/Gray)

Adidas

USD310.00

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/sneakers/23"
)
sneaker = res.json()
{
  "id": 23,
  "brand": "Adidas",
  "model": "Samba",
  "colorway": "Cream/Navy/Gray",
  "style": "Skateboarding",
  "releaseDate": "2021-06-07",
  "retailPrice": 310,
  "currency": "USD",
  "imageUrl": "https://picsum.photos/seed/sneaker-23/800/600",
  "sizesAvailable": [
    "8",
    "8.5",
    "9",
    "9.5",
    "10",
    "10.5",
    "11",
    "11.5",
    "12",
    "13"
  ],
  "gender": "unisex",
  "createdAt": "2021-06-07T16:49:47.708Z"
}
Draftbit