New Balance 550 (White/Black/Navy)
New Balance
USD285.00
Overview
sneakers / #60
New Balance
USD285.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/60" ); const sneaker = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/sneakers.d.ts https://example-data.com/types/sneakers.d.ts
import type { Sneaker } from "./types/sneakers";
const res = await fetch(
"https://example-data.com/api/v1/sneakers/60"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/60"
)
sneaker = res.json() Response
{
"id": 60,
"brand": "New Balance",
"model": "550",
"colorway": "White/Black/Navy",
"style": "Training",
"releaseDate": "2025-02-08",
"retailPrice": 285,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-60/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5.5Y",
"6Y",
"6.5Y"
],
"gender": "youth",
"createdAt": "2025-02-08T11:57:15.327Z"
}