# Shopify Agent Data – Full-Text Product Search

> Shopify Agent Data – Full-Text Product Search is a paid API for AI agents from shopifyagentdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Performs full-text keyword search across all indexed Shopify stores and returns matching products.

## Facts

- Endpoint: POST https://shopifyagentdata.com/api/products
- 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/shopify-agent-data-full-text-product-search-d932224d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-E51eZfkjWQ8qxRAzTMbV

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 shopify-agent-data-full-text-product-search-d932224d -d '<json body>'
```

Example prompt: Search shopifyagentdata.com for 'organic cotton yoga pants' and show me the top matching products from across all indexed Shopify stores, including their prices and store names.

## When to prefer this

Use this endpoint when you need to search for specific products across multiple Shopify stores simultaneously using keyword or full-text search. Prefer this over a single-store API when you want broad coverage across the Shopify ecosystem rather than querying one merchant directly.

## Known failure modes

- No products found matching the query — empty result set returned
- Query too vague or common — returns too many unfiltered results
- Store not indexed — products from untracked stores won't appear
- Rate limit or payment failure — call rejected due to missing or failed x402 payment
- Malformed query string — 400 bad request error

## How this service works

Full-text product search across every indexed store.

## Output

A list of matching products from indexed Shopify stores, including product name, description, price, store name, and product URL for each result.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "sort": {
       "enum": [
        "relevance",
        "price_asc",
        "price_desc",
        "newest"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "minimum": 0
      },
      "vendor": {
       "type": "string"
      },
      "storeId": {
       "type": "integer"
      },
      "category": {
       "type": "string"
      },
      "maxPrice": {
       "type": "number"
      },
      "minPrice": {
       "type": "number"
      },
      "available": {
       "type": "boolean"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shopify-agent-data-full-text-product-search-d932224d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shopifyagentdata.com](https://www.zero.xyz/host/shopifyagentdata.com/llms.txt)
