Reebok Question Mid (Tan/Gray)
Reebok
USD245.00
Overview
sneakers / #48
Reebok
USD245.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/48" ); 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/48"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/48"
)
sneaker = res.json() Response
{
"id": 48,
"brand": "Reebok",
"model": "Question Mid",
"colorway": "Tan/Gray",
"style": "Trail",
"releaseDate": "2017-02-12",
"retailPrice": 245,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-48/800/600",
"sizesAvailable": [
"7.5",
"8.5",
"9",
"9.5",
"10",
"12",
"13"
],
"gender": "men",
"createdAt": "2017-02-12T16:23:13.331Z"
}