sneakers
sneakers
Browse 80 sneakers records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Nike Blazer Mid (Blue/Yellow) USD265.00
-
New Balance 550 (Green/Navy/White) USD105.00
-
Reebok Club C (Tan/Blue/Gray) USD130.00
-
New Balance 990v6 (Navy/Green/Black) USD115.00
-
Adidas Stan Smith (Yellow/Navy) USD150.00
-
Adidas Ultraboost (Blue/Black) USD325.00
-
Jordan Air Jordan 3 (Yellow/Blue) USD340.00
-
Jordan Air Jordan 4 (Red/Brown) USD90.00
-
New Balance 2002R (Blue/Cream/Red) USD200.00
-
Jordan Air Jordan 5 (Blue/Tan/Navy) USD115.00
-
Jordan Air Jordan 3 (Tan/Red) USD180.00
-
Asics Novablast 4 (Gray/Tan/Blue) USD90.00
-
Jordan Air Jordan 5 (Pink/Green/Yellow) USD85.00
-
New Balance 2002R (Green/Pink/Black) USD100.00
-
Asics Gel-1130 (Yellow/Blue) USD285.00
-
Nike Air Force 1 (Yellow/Brown) USD125.00
-
New Balance 574 (Green/Navy/Blue) USD345.00
-
Puma RS-X (Red/Pink) USD290.00
-
Jordan Air Jordan 11 (White/Red/Black) USD115.00
-
Adidas Stan Smith (Cream/Brown/White) USD310.00
-
Adidas Stan Smith (Tan/Red) USD145.00
-
Reebok Nano X3 (Gray/Red/Tan) USD205.00
-
Adidas Samba (Cream/Navy/Gray) USD310.00
-
Jordan Air Jordan 3 (Yellow/White) USD250.00
-
Nike Blazer Mid (Blue/Yellow)
Nike
USD265.00
-
New Balance 550 (Green/Navy/White)
New Balance
USD105.00
-
Reebok Club C (Tan/Blue/Gray)
Reebok
USD130.00
-
New Balance 990v6 (Navy/Green/Black)
New Balance
USD115.00
-
Adidas Stan Smith (Yellow/Navy)
Adidas
USD150.00
-
Adidas Ultraboost (Blue/Black)
Adidas
USD325.00
-
Jordan Air Jordan 3 (Yellow/Blue)
Jordan
USD340.00
-
Jordan Air Jordan 4 (Red/Brown)
Jordan
USD90.00
-
New Balance 2002R (Blue/Cream/Red)
New Balance
USD200.00
-
Jordan Air Jordan 5 (Blue/Tan/Navy)
Jordan
USD115.00
-
Jordan Air Jordan 3 (Tan/Red)
Jordan
USD180.00
-
Asics Novablast 4 (Gray/Tan/Blue)
Asics
USD90.00
-
Jordan Air Jordan 5 (Pink/Green/Yellow)
Jordan
USD85.00
-
New Balance 2002R (Green/Pink/Black)
New Balance
USD100.00
-
Asics Gel-1130 (Yellow/Blue)
Asics
USD285.00
-
Nike Air Force 1 (Yellow/Brown)
Nike
USD125.00
-
New Balance 574 (Green/Navy/Blue)
New Balance
USD345.00
-
Puma RS-X (Red/Pink)
Puma
USD290.00
-
Jordan Air Jordan 11 (White/Red/Black)
Jordan
USD115.00
-
Adidas Stan Smith (Cream/Brown/White)
Adidas
USD310.00
-
Adidas Stan Smith (Tan/Red)
Adidas
USD145.00
-
Reebok Nano X3 (Gray/Red/Tan)
Reebok
USD205.00
-
Adidas Samba (Cream/Navy/Gray)
Adidas
USD310.00
-
Jordan Air Jordan 3 (Yellow/White)
Jordan
USD250.00
Nike Blazer Mid (Blue/Yellow)
Nike
USD265.00
New Balance 550 (Green/Navy/White)
New Balance
USD105.00
Reebok Club C (Tan/Blue/Gray)
Reebok
USD130.00
New Balance 990v6 (Navy/Green/Black)
New Balance
USD115.00
Adidas Stan Smith (Yellow/Navy)
Adidas
USD150.00
Adidas Ultraboost (Blue/Black)
Adidas
USD325.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": 1,
"brand": "Nike",
"model": "Blazer Mid",
"colorway": "Blue/Yellow",
"style": "Lifestyle",
"releaseDate": "2023-07-14",
"retailPrice": 265,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-1/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5Y",
"5.5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2023-07-14T03:55:17.628Z"
},
{
"id": 2,
"brand": "New Balance",
"model": "550",
"colorway": "Green/Navy/White",
"style": "Skateboarding",
"releaseDate": "2022-01-01",
"retailPrice": 105,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-2/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5Y",
"5.5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2022-01-01T22:27:17.368Z"
},
{
"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"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/sneakers?page=1",
"first": "/api/v1/sneakers?page=1",
"last": "/api/v1/sneakers?page=4",
"next": "/api/v1/sneakers?page=2",
"prev": null
}
}