# Shopify Agent Data – Store Directory Lookup

> Shopify Agent Data – Store Directory Lookup 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).

Queries a directory of indexed Shopify stores, filtering by niche, country, category, product count range, and keyword to return live store metadata.

## Facts

- Endpoint: POST https://shopifyagentdata.com/stores
- 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-store-directory-lookup-69f74296
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OIbCZWe0qnzG3gySlLHEH

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-store-directory-lookup-69f74296 -d '<json body>'
```

Example prompt: Find me up to 20 Shopify stores in the US that sell sustainable fashion — sort by popularity and show me their product counts and prices.

## When to prefer this

Use this endpoint when you need to discover and browse indexed Shopify stores by niche, category, geography, or product count — especially for competitive research, market discovery, or building a shortlist of stores for further product-level analysis. Prefer this over the product search sibling when your goal is store-level discovery rather than searching across products.

## Known failure modes

- Invalid country code returns no results or validation error
- Overly broad query returns too many results requiring tighter filters
- Empty result set when no stores match the niche/category/country combination
- Payment not processed via x402 results in 402 Payment Required response
- Invalid sort field causes a request error
- Offset beyond available results returns empty array

## 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 a list of matching Shopify stores with metadata such as store name, domain, niche, category, product count, pricing data, stock levels, and trend indicators based on the applied filters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Full-text filter on name/domain"
  },
  "sort": {
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "niche": {
   "type": "string"
  },
  "offset": {
   "type": "integer"
  },
  "country": {
   "type": "string",
   "description": "ISO country code e.g. US"
  },
  "category": {
   "type": "string"
  },
  "maxProducts": {
   "type": "integer"
  },
  "minProducts": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shopify-agent-data-store-directory-lookup-69f74296/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)
