Jordan Air Jordan 3 (Yellow/Blue)
Jordan
USD340.00
Overview
sneakers / #7
Jordan
USD340.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/7" ); 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/7"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/7"
)
sneaker = res.json() Response
{
"id": 7,
"brand": "Jordan",
"model": "Air Jordan 3",
"colorway": "Yellow/Blue",
"style": "Skateboarding",
"releaseDate": "2022-09-07",
"retailPrice": 340,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-7/800/600",
"sizesAvailable": [
"6",
"8.5",
"9",
"9.5"
],
"gender": "women",
"createdAt": "2022-09-07T13:27:57.793Z"
}