Reebok Club C (Tan/Blue/Gray)
Reebok
USD130.00
Overview
sneakers / #3
Reebok
USD130.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/3" ); 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/3"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/3"
)
sneaker = res.json() Response
{
"id": 3,
"brand": "Reebok",
"model": "Club C",
"colorway": "Tan/Blue/Gray",
"style": "Lifestyle",
"releaseDate": "2019-06-11",
"retailPrice": 130,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-3/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"6Y",
"6.5Y"
],
"gender": "youth",
"createdAt": "2019-06-11T11:14:22.948Z"
}