Jordan Air Jordan 4 (Black/Cream/Navy)
Jordan
USD285.00
Overview
sneakers / #62
Jordan
USD285.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/62" ); 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/62"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/62"
)
sneaker = res.json() Response
{
"id": 62,
"brand": "Jordan",
"model": "Air Jordan 4",
"colorway": "Black/Cream/Navy",
"style": "Running",
"releaseDate": "2022-01-09",
"retailPrice": 285,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-62/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2022-01-09T07:39:11.138Z"
}