example-data.com
Menu
Browse docs and collections

sneakers

sneakers

Browse 80 sneakers records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

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.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/sneakers?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/sneakers?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/sneakers.d.ts https://example-data.com/types/sneakers.d.ts
import type { Sneaker, ListEnvelope } from "./types/sneakers";

const res = await fetch(
  "https://example-data.com/api/v1/sneakers?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Sneaker>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/sneakers",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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 →