Asics Gel-Lyte III (Cream/Blue)
Asics
USD300.00
Overview
sneakers / #55
Asics
USD300.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/55" ); 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/55"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/55"
)
sneaker = res.json() Response
{
"id": 55,
"brand": "Asics",
"model": "Gel-Lyte III",
"colorway": "Cream/Blue",
"style": "Skateboarding",
"releaseDate": "2016-06-30",
"retailPrice": 300,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-55/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2016-06-30T21:44:26.942Z"
}