# Shopify Agent Data – Product Search

> Shopify Agent Data – 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-14).

Search and filter live Shopify product listings across indexed stores by keyword, price, category, vendor, availability, and more.

## Facts

- Endpoint: POST https://shopifyagentdata.com/products
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shopify-agent-data-product-search-749f2632
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VbTdhBDcftmHEEcibVHnw

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-product-search-749f2632 -d '<json body>'
```

Example prompt: Search Shopify Agent Data for available running shoes under $120 from Nike, sorted by price, and return the top 10 results.

## When to prefer this

Choose this endpoint when you need real-time product data — prices, availability, or catalog searches — across Shopify stores, especially when you want per-request pay-as-you-go access with no subscription. Ideal for AI agents doing price comparison, inventory checks, or product discovery across multiple Shopify merchants.

## Known failure modes

- Invalid or missing query parameters return an error or empty result set
- Payment not fulfilled (402) blocks access to results
- Unknown storeId returns no results
- Offset beyond available results returns empty list
- Rate limiting or quota exceeded may return an error

## How this service works

Live Shopify store data — products, prices, stock, and trends — sold per-request over x402. Built for AI agents; open to any human with a Base wallet.

## Output

A JSON object containing matched product listings with fields such as product name, price, stock availability, vendor, category, and store identifiers — filtered and sorted according to the query parameters supplied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string"
  },
  "sort": {
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "offset": {
   "type": "integer"
  },
  "vendor": {
   "type": "string"
  },
  "storeId": {
   "type": "integer"
  },
  "category": {
   "type": "string"
  },
  "maxPrice": {
   "type": "number"
  },
  "minPrice": {
   "type": "number"
  },
  "available": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shopify-agent-data-product-search-749f2632/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)
