# Shopify Agent Data – Collections Lookup

> Shopify Agent Data – Collections Lookup is a paid API for AI agents from shopifyagentdata.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches live Shopify collection listings (products, prices, stock, trends) for a specific store via paginated POST query

## Facts

- Endpoint: POST https://shopifyagentdata.com/collections
- Price: $0.02/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-collections-lookup-6ab5fdb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sz0BmyD6hqIdyf-hXG4Yd

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-collections-lookup-6ab5fdb3 -d '<json body>'
```

Example prompt: Pull the first 20 collections from Shopify store ID 7 — I want to see what product categories they carry and whether they have anything in the 'apparel' space.

## When to prefer this

Use this endpoint when you need to enumerate or browse the collection/category structure of a specific Shopify store by storeId, especially for paginated traversal of a store's product groupings. Prefer over the product search endpoint when you want category-level navigation rather than individual product lookup.

## Known failure modes

- Invalid or non-existent storeId returns empty result or error
- Payment failure via x402 if Base wallet has insufficient USDC balance
- Missing required storeId may return generic or no results
- Offset beyond available collections returns empty array
- Malformed query string causes 400-level 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

Returns a JSON object containing collection listings from the specified Shopify store, including product groupings, associated prices, stock availability, and trend signals, paginated according to the limit and offset provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "offset": {
   "type": "integer"
  },
  "storeId": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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