# Shopify Store Detector

> Shopify Store Detector is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Detects whether a website runs on Shopify, reporting theme name/ID, currency, and public product catalog availability

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/shopify
- 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-store-detector-71c533aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xti02lFuZ9sjQgaGaIp-5

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-store-detector-71c533aa
```

Example prompt: Can you check if example-brand.com runs on Shopify, and if so, tell me the theme name, currency, and whether their product catalog is publicly accessible?

## When to prefer this

Use this endpoint when you need to quickly determine if a specific website is powered by Shopify and want associated store metadata (theme, currency, product catalog) in a single call. Ideal for e-commerce prospecting, competitive intelligence, agency lead qualification, or market research workflows. Prefer this over generic tech-stack detectors when Shopify-specific signals (theme ID, checkout hints, product catalog) are what you care about.

## Known failure modes

- Site is not accessible or returns non-200 status — detection fails with no result
- Shopify signals are obfuscated by a headless or custom-domain setup — may return false negative
- Theme name/ID not exposed publicly — theme fields returned as null
- Product catalog is private (/products.json locked) — product count unavailable
- Rate limiting or bot protection on the target site blocks the probe

## How this service works

Shopify store detection: whether a site runs on Shopify (asset hosts, Shopify.theme object, checkout hints), the theme name and ID when visible, currency, and whether the /products.json catalog endpoint is public with a product count. E-commerce prospecting. $0.01 per site.

## Output

Returns whether the target site is running on Shopify (detected via asset hosts, Shopify.theme object, checkout hints), the theme name and ID when visible, the store's currency, and whether the /products.json endpoint is publicly accessible along with a product count if so.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shopify-store-detector-71c533aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
