New Balance 990v6 (Gray/Green/Brown)
New Balance
USD140.00
Overview
sneakers / #41
New Balance
USD140.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/41" ); 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/41"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/41"
)
sneaker = res.json() Response
{
"id": 41,
"brand": "New Balance",
"model": "990v6",
"colorway": "Gray/Green/Brown",
"style": "Training",
"releaseDate": "2024-11-06",
"retailPrice": 140,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-41/800/600",
"sizesAvailable": [
"6.5",
"7.5",
"8",
"8.5",
"10"
],
"gender": "women",
"createdAt": "2024-11-06T13:04:58.800Z"
}