example-data.com

sneakers

sneakers

Page 3 of 4.

Jordan Air Jordan 4 (Red/Green/Cream)

Jordan Air Jordan 4 (Red/Green/Cream)

Jordan

USD85.00

Jordan Air Jordan 5 (Black/Tan)

Jordan Air Jordan 5 (Black/Tan)

Jordan

USD340.00

Nike Cortez (Green/Navy/Black)

Nike Cortez (Green/Navy/Black)

Nike

USD150.00

Reebok Classic Leather (Green/Cream/Tan)

Reebok Classic Leather (Green/Cream/Tan)

Reebok

USD140.00

Reebok Nano X3 (Brown/Green)

Reebok Nano X3 (Brown/Green)

Reebok

USD90.00

Jordan Air Jordan 1 (Gray/Black/Pink)

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