# DopamineDesk Shopify Store Lookup

> DopamineDesk Shopify Store Lookup is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Searches a Shopify store by domain and optional keyword query to return matching product listings with prices and variant counts.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/shopify_store_lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-shopify-store-lookup-dca1e904
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mAy4gKIrzdTiyVGwXST8m

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 dopaminedesk-shopify-store-lookup-dca1e904
```

Example prompt: Search the Shopify store at smallcrewmerch.com for 'custom logo shirt' and return up to 5 matching products with their prices.

## When to prefer this

Use this endpoint when you need to programmatically browse or search a known Shopify store's product catalog by domain name, especially when you want to match products by keyword and retrieve structured pricing and variant data without scraping. Prefer this over generic web scrapers when the target store is Shopify-based, as it returns clean, structured product data ready for agent consumption.

## Known failure modes

- Domain not a Shopify store — returns success:false or empty products array
- Store not publicly accessible or password-protected — lookup fails
- Invalid domain format — query parameter validation error
- No products match the search query — returns empty products array with matches_returned:0
- Rate limit or network timeout from the Shopify store — upstream error
- Limit parameter out of range (not 1–20) — schema validation error

## How this service works

Search a live public Shopify storefront and return current public products, variants, prices, availability, images, and declared agent-commerce capabilities.

## Output

Returns a JSON object with a success flag, the store domain, the search query used, number of products scanned, number of matches returned, currency, agent commerce availability info, and an array of matching products each containing title, minimum price, and number of available variants.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Maximum matching products to return, from 1 to 20."
      },
      "query": {
       "type": "string",
       "description": "Optional product search query."
      },
      "domain": {
       "type": "string",
       "description": "Domain name of the Shopify store."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "see"
     ],
     "properties": {
      "see": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "see": "https://ai-data-marketplace-1042299154756.us-central1.run.app/openapi.json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-shopify-store-lookup-dca1e904/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
