example-data.com

sneakers

sneakers

Page 2 of 4.

New Balance 550 (Navy/Yellow)

New Balance 550 (Navy/Yellow)

New Balance

USD110.00

Jordan Air Jordan 4 (Red/Brown/Yellow)

Jordan Air Jordan 4 (Red/Brown/Yellow)

Jordan

USD200.00

Reebok Question Mid (Cream/Green/Navy)

Reebok Question Mid (Cream/Green/Navy)

Reebok

USD280.00

Jordan Air Jordan 3 (White/Gray/Pink)

Jordan Air Jordan 3 (White/Gray/Pink)

Jordan

USD325.00

Nike Air Max 1 (Red/Navy)

Nike Air Max 1 (Red/Navy)

Nike

USD140.00

Reebok Nano X3 (Navy/Tan/Green)

Reebok Nano X3 (Navy/Tan/Green)

Reebok

USD260.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": 25,
      "brand": "New Balance",
      "model": "550",
      "colorway": "Navy/Yellow",
      "style": "Lifestyle",
      "releaseDate": "2017-09-16",
      "retailPrice": 110,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-25/800/600",
      "sizesAvailable": [
        "5",
        "5.5",
        "6",
        "7",
        "8",
        "8.5",
        "9",
        "9.5"
      ],
      "gender": "women",
      "createdAt": "2017-09-16T13:40:05.541Z"
    },
    {
      "id": 26,
      "brand": "Jordan",
      "model": "Air Jordan 4",
      "colorway": "Red/Brown/Yellow",
      "style": "Trail",
      "releaseDate": "2022-11-19",
      "retailPrice": 200,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-26/800/600",
      "sizesAvailable": [
        "7",
        "7.5",
        "9",
        "9.5",
        "10",
        "10.5",
        "11",
        "11.5",
        "12"
      ],
      "gender": "men",
      "createdAt": "2022-11-19T20:28:06.326Z"
    },
    {
      "id": 27,
      "brand": "Reebok",
      "model": "Question Mid",
      "colorway": "Cream/Green/Navy",
      "style": "Lifestyle",
      "releaseDate": "2021-12-08",
      "retailPrice": 280,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-27/800/600",
      "sizesAvailable": [
        "7",
        "7.5",
        "9",
        "9.5",
        "10",
        "10.5",
        "11",
        "11.5",
        "12",
        "13"
      ],
      "gender": "unisex",
      "createdAt": "2021-12-08T20:33:54.780Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/sneakers?page=2",
    "next": "/api/v1/sneakers?page=3",
    "prev": "/api/v1/sneakers?page=1"
  }
}
Draftbit