New Balance 327 (Green/Navy/Red)
New Balance
USD135.00
Overview
sneakers / #80
New Balance
USD135.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/80" ); 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/80"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/80"
)
sneaker = res.json() Response
{
"id": 80,
"brand": "New Balance",
"model": "327",
"colorway": "Green/Navy/Red",
"style": "Trail",
"releaseDate": "2025-11-03",
"retailPrice": 135,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-80/800/600",
"sizesAvailable": [
"5",
"7",
"7.5",
"8.5",
"9"
],
"gender": "women",
"createdAt": "2025-11-03T15:00:03.670Z"
}