example-data.com

sneakers

sneakers

Browse 80 sneakers records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Nike Blazer Mid (Blue/Yellow)

Nike Blazer Mid (Blue/Yellow)

Nike

USD265.00

New Balance 550 (Green/Navy/White)

New Balance 550 (Green/Navy/White)

New Balance

USD105.00

Reebok Club C (Tan/Blue/Gray)

Reebok Club C (Tan/Blue/Gray)

Reebok

USD130.00

New Balance 990v6 (Navy/Green/Black)

New Balance 990v6 (Navy/Green/Black)

New Balance

USD115.00

Adidas Stan Smith (Yellow/Navy)

Adidas Stan Smith (Yellow/Navy)

Adidas

USD150.00

Adidas Ultraboost (Blue/Black)

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
  }
}

View full response →

Draftbit