sneakers
sneakers
Page 4 of 4.
-
Adidas Stan Smith (Brown/Tan) USD240.00
-
Reebok Club C (Navy/Green) USD110.00
-
Reebok Classic Leather (Brown/Red) USD95.00
-
Nike Air Force 1 (Black/Yellow/White) USD170.00
-
Reebok Club C (Pink/Gray) USD310.00
-
Nike Air Force 1 (Gray/White/Pink) USD325.00
-
New Balance 550 (Yellow/Cream/Tan) USD160.00
-
New Balance 327 (Green/Navy/Red) USD135.00
-
Adidas Stan Smith (Brown/Tan)
Adidas
USD240.00
-
Reebok Club C (Navy/Green)
Reebok
USD110.00
-
Reebok Classic Leather (Brown/Red)
Reebok
USD95.00
-
Nike Air Force 1 (Black/Yellow/White)
Nike
USD170.00
-
Reebok Club C (Pink/Gray)
Reebok
USD310.00
-
Nike Air Force 1 (Gray/White/Pink)
Nike
USD325.00
-
New Balance 550 (Yellow/Cream/Tan)
New Balance
USD160.00
-
New Balance 327 (Green/Navy/Red)
New Balance
USD135.00
Adidas Stan Smith (Brown/Tan)
Adidas
USD240.00
Reebok Club C (Navy/Green)
Reebok
USD110.00
Reebok Classic Leather (Brown/Red)
Reebok
USD95.00
Nike Air Force 1 (Black/Yellow/White)
Nike
USD170.00
Reebok Club C (Pink/Gray)
Reebok
USD310.00
Nike Air Force 1 (Gray/White/Pink)
Nike
USD325.00
Showing first 6 of 8 on this page.
curl -sS \
"https://example-data.com/api/v1/sneakers?limit=25"const res = await fetch(
"https://example-data.com/api/v1/sneakers?limit=25"
);
const { data, meta } = await res.json();import type { Sneaker, ListEnvelope } from "https://example-data.com/types/sneakers.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/sneakers?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Sneaker>;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 73,
"brand": "Adidas",
"model": "Stan Smith",
"colorway": "Brown/Tan",
"style": "Training",
"releaseDate": "2023-08-27",
"retailPrice": 240,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-73/800/600",
"sizesAvailable": [
"7",
"8",
"8.5",
"9",
"9.5",
"10.5",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2023-08-27T19:33:37.195Z"
},
{
"id": 74,
"brand": "Reebok",
"model": "Club C",
"colorway": "Navy/Green",
"style": "Running",
"releaseDate": "2024-02-25",
"retailPrice": 110,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-74/800/600",
"sizesAvailable": [
"7.5",
"8",
"8.5",
"9.5",
"10.5",
"11",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2024-02-25T01:59:36.006Z"
},
{
"id": 75,
"brand": "Reebok",
"model": "Classic Leather",
"colorway": "Brown/Red",
"style": "Running",
"releaseDate": "2021-06-11",
"retailPrice": 95,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-75/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2021-06-11T19:51:31.774Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/sneakers?page=4",
"next": null,
"prev": "/api/v1/sneakers?page=3"
}
}