Shoe Catalog Static API

A simple developer sandbox interface providing structured shoe metadata and catalog media assets.

Data Endpoint

Query or load the JSON database file containing comprehensive specifications, variant records, attributes, and image references for all products.

GET /products.json
Access Raw JSON →

Media Directory

Access the catalog image assets referenced by the imageUrl attributes in the database.

GET /images/{filename}

Usage Example

Retrieve and load the catalog dynamically in JavaScript:

fetch('./products.json')
  .then(res => res.json())
  .then(products => {
    console.log(`Loaded ${products.length} shoes.`);
  });