sneakers
sneakers
Page 3 of 4.
-
Jordan Air Jordan 4 (Red/Green/Cream) USD85.00
-
Jordan Air Jordan 5 (Black/Tan) USD340.00
-
Nike Cortez (Green/Navy/Black) USD150.00
-
Reebok Classic Leather (Green/Cream/Tan) USD140.00
-
Reebok Nano X3 (Brown/Green) USD90.00
-
Jordan Air Jordan 1 (Gray/Black/Pink) USD140.00
-
Asics Gel-Lyte III (Cream/Blue) USD300.00
-
Asics Gel-Lyte III (Pink/Gray/Navy) USD100.00
-
Jordan Air Jordan 11 (Cream/Green) USD110.00
-
Asics Novablast 4 (Pink/Green/Gray) USD215.00
-
Puma RS-X (Yellow/Brown) USD295.00
-
New Balance 550 (White/Black/Navy) USD285.00
-
Puma Future Rider (Gray/Blue) USD270.00
-
Jordan Air Jordan 4 (Black/Cream/Navy) USD285.00
-
Nike Air Max 90 (Red/Pink) USD175.00
-
Adidas Forum Low (Red/Navy) USD310.00
-
Puma RS-X (Red/Cream) USD215.00
-
Puma Future Rider (Brown/Green) USD240.00
-
Asics Gel-Kayano 14 (Gray/Black) USD315.00
-
Reebok Club C (Red/Brown) USD190.00
-
Nike Air Max 1 (Green/Blue) USD340.00
-
Jordan Air Jordan 11 (Black/Yellow) USD330.00
-
Asics Gel-Lyte III (Cream/Blue/Pink) USD285.00
-
Adidas Forum Low (Yellow/Black) USD305.00
-
Jordan Air Jordan 4 (Red/Green/Cream)
Jordan
USD85.00
-
Jordan Air Jordan 5 (Black/Tan)
Jordan
USD340.00
-
Nike Cortez (Green/Navy/Black)
Nike
USD150.00
-
Reebok Classic Leather (Green/Cream/Tan)
Reebok
USD140.00
-
Reebok Nano X3 (Brown/Green)
Reebok
USD90.00
-
Jordan Air Jordan 1 (Gray/Black/Pink)
Jordan
USD140.00
-
Asics Gel-Lyte III (Cream/Blue)
Asics
USD300.00
-
Asics Gel-Lyte III (Pink/Gray/Navy)
Asics
USD100.00
-
Jordan Air Jordan 11 (Cream/Green)
Jordan
USD110.00
-
Asics Novablast 4 (Pink/Green/Gray)
Asics
USD215.00
-
Puma RS-X (Yellow/Brown)
Puma
USD295.00
-
New Balance 550 (White/Black/Navy)
New Balance
USD285.00
-
Puma Future Rider (Gray/Blue)
Puma
USD270.00
-
Jordan Air Jordan 4 (Black/Cream/Navy)
Jordan
USD285.00
-
Nike Air Max 90 (Red/Pink)
Nike
USD175.00
-
Adidas Forum Low (Red/Navy)
Adidas
USD310.00
-
Puma RS-X (Red/Cream)
Puma
USD215.00
-
Puma Future Rider (Brown/Green)
Puma
USD240.00
-
Asics Gel-Kayano 14 (Gray/Black)
Asics
USD315.00
-
Reebok Club C (Red/Brown)
Reebok
USD190.00
-
Nike Air Max 1 (Green/Blue)
Nike
USD340.00
-
Jordan Air Jordan 11 (Black/Yellow)
Jordan
USD330.00
-
Asics Gel-Lyte III (Cream/Blue/Pink)
Asics
USD285.00
-
Adidas Forum Low (Yellow/Black)
Adidas
USD305.00
Jordan Air Jordan 4 (Red/Green/Cream)
Jordan
USD85.00
Jordan Air Jordan 5 (Black/Tan)
Jordan
USD340.00
Nike Cortez (Green/Navy/Black)
Nike
USD150.00
Reebok Classic Leather (Green/Cream/Tan)
Reebok
USD140.00
Reebok Nano X3 (Brown/Green)
Reebok
USD90.00
Jordan Air Jordan 1 (Gray/Black/Pink)
Jordan
USD140.00
Showing first 6 of 24 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": 49,
"brand": "Jordan",
"model": "Air Jordan 4",
"colorway": "Red/Green/Cream",
"style": "Running",
"releaseDate": "2026-02-28",
"retailPrice": 85,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-49/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"7",
"7.5",
"8",
"8.5",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2026-02-28T17:49:22.825Z"
},
{
"id": 50,
"brand": "Jordan",
"model": "Air Jordan 5",
"colorway": "Black/Tan",
"style": "Trail",
"releaseDate": "2017-02-25",
"retailPrice": 340,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-50/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5Y",
"5.5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2017-02-25T06:27:33.412Z"
},
{
"id": 51,
"brand": "Nike",
"model": "Cortez",
"colorway": "Green/Navy/Black",
"style": "Running",
"releaseDate": "2025-02-03",
"retailPrice": 150,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-51/800/600",
"sizesAvailable": [
"8",
"8.5",
"9.5",
"10.5",
"13"
],
"gender": "men",
"createdAt": "2025-02-03T11:44:27.471Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/sneakers?page=3",
"next": "/api/v1/sneakers?page=4",
"prev": "/api/v1/sneakers?page=2"
}
}