example-data.com

sneakers

sneakers

Page 4 of 4.

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": 73,
      "brand": "Adidas",
      "model": "Stan Smith",
      "colorway": "Brown/Tan",
      "style": "Training",
      "releaseDate": "2023-08-27",
      "retailPrice": 240,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-73/800/600",
      "sizesAvailable": [
        "7",
        "8",
        "8.5",
        "9",
        "9.5",
        "10.5",
        "11.5",
        "12",
        "13"
      ],
      "gender": "unisex",
      "createdAt": "2023-08-27T19:33:37.195Z"
    },
    {
      "id": 74,
      "brand": "Reebok",
      "model": "Club C",
      "colorway": "Navy/Green",
      "style": "Running",
      "releaseDate": "2024-02-25",
      "retailPrice": 110,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-74/800/600",
      "sizesAvailable": [
        "7.5",
        "8",
        "8.5",
        "9.5",
        "10.5",
        "11",
        "11.5",
        "12",
        "13"
      ],
      "gender": "unisex",
      "createdAt": "2024-02-25T01:59:36.006Z"
    },
    {
      "id": 75,
      "brand": "Reebok",
      "model": "Classic Leather",
      "colorway": "Brown/Red",
      "style": "Running",
      "releaseDate": "2021-06-11",
      "retailPrice": 95,
      "currency": "USD",
      "imageUrl": "https://picsum.photos/seed/sneaker-75/800/600",
      "sizesAvailable": [
        "5",
        "5.5",
        "6",
        "6.5",
        "7",
        "7.5",
        "8",
        "8.5",
        "9",
        "9.5",
        "10"
      ],
      "gender": "women",
      "createdAt": "2021-06-11T19:51:31.774Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/sneakers?page=4",
    "next": null,
    "prev": "/api/v1/sneakers?page=3"
  }
}
Draftbit