Adidas Samba (Cream/Navy/Gray)
Adidas
USD310.00
Overview
sneakers / #23
Adidas
USD310.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/sneakers/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/sneakers/23" ); 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/23"
);
const sneaker = (await res.json()) as Sneaker; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/23"
)
sneaker = res.json() Response
{
"id": 23,
"brand": "Adidas",
"model": "Samba",
"colorway": "Cream/Navy/Gray",
"style": "Skateboarding",
"releaseDate": "2021-06-07",
"retailPrice": 310,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-23/800/600",
"sizesAvailable": [
"8",
"8.5",
"9",
"9.5",
"10",
"10.5",
"11",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2021-06-07T16:49:47.708Z"
}