# KicksDB Product Search

> KicksDB Product Search is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search sneaker and streetwear products across major resale and retail marketplaces including StockX, GOAT, SNKRS, Kream, Novelship, and Shopify stores.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/kicksdb/product-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kicksdb-product-search-dc78cee8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5IyDD7IbwjJkl9ajnltLV

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability kicksdb-product-search-dc78cee8 -d '<json body>'
```

Example prompt: Search StockX for Air Jordan 1 Retro High OG Chicago and show me the available listings.

## When to prefer this

Choose this endpoint when you need to search for sneaker or streetwear products specifically on major resale and retail platforms (StockX, GOAT, SNKRS, Kream, Novelship, or Shopify). It is ideal for price discovery, product availability checks, and resale market research. Prefer this over generic web search when you want structured product data from these specific marketplaces rather than unstructured web results.

## Known failure modes

- Invalid or unsupported marketplace enum value returns an error
- Empty or too-short query string rejected by minLength:1 validation
- Marketplace may return zero results for obscure or misspelled product names
- Rate limiting or payment failures if USDC balance is insufficient
- Marketplace-specific outages may cause empty or degraded responses

## How this service works

KicksDB — search sneaker/streetwear products (~0.05¢). Params: `marketplace` (stockx | goat | shopify | snkrs | kream | novelship), `query`.

## Output

Returns a list of product listings from the specified marketplace matching the search query, including product names, details, and marketplace-specific metadata such as pricing and availability information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "marketplace",
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "minLength": 1
      },
      "marketplace": {
       "enum": [
        "stockx",
        "goat",
        "shopify",
        "snkrs",
        "kream",
        "novelship"
       ],
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kicksdb-product-search-dc78cee8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
