Skip to content
View kicksdbacc's full-sized avatar

Block or report kicksdbacc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kicksdbacc/README.MD

KicksDB 🥷📊

The fastest way to access sneaker & streetwear market data.

KicksDB is a plug-and-play sneaker data API designed for developers, resellers, analysts, and SaaS builders who need real-time, reliable, and structured data from marketplaces like StockX, GOAT, Shopify, and more.

With a single subscription, you get instant access to:

  • Accurate product metadata (sizing, colorways, release info)
  • Market pricing across multiple platforms
  • Live inventory & sales insights
  • A unified API to query multiple marketplaces with one request

Stop scraping. Stop reverse-engineering. Start building with KicksDB.

📦 Our APIs

API Type Description Best For
Standard API Pre-fetched & cached sneaker market data, refreshed on schedule. Bulk data, dashboards, historical price tracking.
Real-time API Live requests directly from marketplaces with the latest info. Price monitors, checkout bots, live market signals.
Unified API A single normalized response format across all marketplaces. Multi-platform apps, cross-site comparisons, product matching.

🛠 Example Usage

# Get product from StockX
curl "https://api.kicks.dev/v3/stockx/products/air-jordan-4-retro-red-thunder" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "$schema": "https://api.kicks.dev/schemas/RespProductBody.json",
  "data": {
    "id": "50b8dfb8-327b-4703-8a9b-e6a344aef7b8",
    "title": "Jordan 4 Retro Red Thunder",
    "brand": "Jordan",
    "model": "Jordan 4 Retro",
    "gender": "men",
    "description": "Following similar color blocking as the Air Jordan 4 Thunder, the Air Jordan 4 Red Thunder features an all-black Durabuck upper with red netted underlays and eyelets. On the tongue, a signature Air Jordan Flight patch is stitched. A vibrant red midsole and Jumpman heel tab complete the retro design.\n<br>\n<br>\nThe Air Jordan 4 Red Thunder releases in January of 2022 and retails for $190.",
    "image": "https://images.stockx.com/images/Air-Jordan-4-Retro-Red-Thunder-Product.jpg?fit=fill&bg=FFFFFF&w=700&h=500&fm=webp&auto=compress&q=90&dpr=2&trim=color&updated_at=1738193358",
    "sku": "CT8527-016",
    "slug": "air-jordan-4-retro-red-thunder",
    "category": "Air Jordan",
    "product_type": "sneakers",
    "secondary_category": "Four",
    "categories": [
      "sneakers"
    ],
    "gallery": [
      "https://images.stockx.com/images/Air-Jordan-4-Retro-Red-Thunder-Product.jpg?fit=fill&bg=FFFFFF&w=700&h=500&fm=webp&auto=compress&q=90&dpr=2&trim=color&updated_at=1738193358"
    ],
    "gallery_360": [
      "https://images.stockx.com/360/Air-Jordan-4-Retro-Red-Thunder/Images/Air-Jordan-4-Retro-Red-Thunder/Lv2/img01.jpg?fm=webp&auto=compress&w=559&q=90&dpr=2&updated_at=1641395120",
      "https://images.stockx.com/360/Air-Jordan-4-Retro-Red-Thunder/Images/Air-Jordan-4-Retro-Red-Thunder/Lv2/img02.jpg?fm=webp&auto=compress&w=559&q=90&dpr=2&updated_at=1641395120",
      // ... truncated ...
    ],
    "updated_at": "2025-09-04T02:00:14.30583Z",
    "created_at": "2025-01-20T07:09:04.048183Z",
    "link": "https://stockx.com/air-jordan-4-retro-red-thunder",
    "rank": 565,
    "weekly_orders": 546,
    "min_price": 0,
    "max_price": 1456,
    "avg_price": 330.29333333333335,
    "short_description": "The Jordan 4 Retro Red Thunder is a retro basketball shoe featuring a black Durabuck upper with red accents, a red midsole, and a Jumpman heel tab. It pays homage to the Air Jordan 4 Thunder with its bold color blocking. Released in January 2022 for $190, this shoe offers a vibrant retro design for Jordan fans.",
    "upcoming": false,
    "traits": [
      {
        "product_id": "50b8dfb8-327b-4703-8a9b-e6a344aef7b8",
        "trait": "Colorway",
        "value": "Black/Multi-Color-Multi-Color-Crimson"
      },
      {
        "product_id": "50b8dfb8-327b-4703-8a9b-e6a344aef7b8",
        "trait": "Release Date",
        "value": "2022-01-15"
      },
      {
        "product_id": "50b8dfb8-327b-4703-8a9b-e6a344aef7b8",
        "trait": "Retail Price",
        "value": "190"
      }
    ],
    "variants": [
      {
        "id": "0eb12979-9349-420c-8a86-b21ecedd144a",
        "size": "3.5",
        "size_type": "us m",
        "sizes": [
          {
            "size": "US M 3.5",
            "type": "us m"
          },
          {
            "size": "UK 3",
            "type": "uk"
          },
          // ... truncated ...
        ],
        "lowest_ask": 650,
        "total_asks": 3,
        "previous_lowest_ask": 650,
        "position": 0,
        "updated_at": "2025-05-20T04:00:20.761546Z",
        "currency": "USD",
        "market": "US",
        "sales_count_15_days": 1,
        "sales_count_30_days": 1,
        "sales_count_60_days": 1
      },
      // ... truncated ...
    ],
    "statistics": {
      "market": "US",
      "annual_high": 820,
      "annual_low": 248,
      "annual_range_high": 467,
      "annual_range_low": 373,
      "annual_sales_count": 2476,
      "annual_average_price": 401,
      "annual_volatility": 0.11231,
      "annual_price_premium": 1.21,
      "annual_total_dollars": 993423,
      "last_90_days_range_high": 820,
      "last_90_days_range_low": 260,
      "last_90_days_sales_count": 546,
      "last_90_days_average_price": 395,
      "updated_at": "2025-08-24T05:52:30.260382Z"
    },
  }
}

🌿 Start building today

Popular repositories Loading

  1. kicksdbacc kicksdbacc Public