# Neuroterminal Store Profile Lookup

> Neuroterminal Store Profile Lookup is a paid API for AI agents from api.neuroterminal.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns structured profile data about an e-commerce store domain, including platform detection, policy page presence, structured data quality, and product count estimate.

## Facts

- Endpoint: GET https://api.neuroterminal.xyz/v1/store-profile
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/neuroterminal-store-profile-lookup-b513489b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zBsriaJ3yO6ldeTYkj8Df

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 neuroterminal-store-profile-lookup-b513489b
```

Example prompt: Can you pull up the store profile for allbirds.com — I want to know what platform they're on, whether they have a return and shipping policy, and roughly how many products they carry?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of an e-commerce domain's technical setup — platform, policy completeness, and catalog size — without scraping the site yourself. Ideal for lead qualification, supplier vetting, competitor research, or pre-integration audits where structured data quality and policy page presence matter. Prefer this over raw web scraping when you need normalized, agent-ready output at low cost with no API key setup.

## Known failure modes

- Domain not found or unreachable returns empty or error response
- Non-commerce sites may return null platform and missing policy pages
- Product count estimate may be capped for very large catalogs (capped: true)
- Payment failure via x402 protocol results in 402 status before data is returned
- Malformed domain input (e.g. including protocol prefix) may cause lookup failure

## How this service works

Paid HTTP endpoints for AI agents, settled in USDC on Base via the x402 protocol. No account, no API key — pay per call.

## Output

A JSON object containing the queried domain, detected e-commerce platform (e.g. Shopify), boolean flags for presence of contact, return policy, and shipping policy pages, structured data quality assessment for products, and a product count estimate with a capped flag indicating if the count was truncated.

## 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": {
      "domain": {
       "type": "string",
       "description": "bare domain, e.g. example.com"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "allbirds.com",
  "platform": "shopify",
  "policyPages": {
   "hasContactPage": true,
   "hasReturnPolicy": true,
   "hasShippingPolicy": true
  },
  "structuredData": {
   "product": {
    "missing": [],
    "hasProductSchema": true
   }
  },
  "productCountEstimate": {
   "capped": false,
   "estimate": 312
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/neuroterminal-store-profile-lookup-b513489b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.neuroterminal.xyz](https://www.zero.xyz/host/api.neuroterminal.xyz/llms.txt)
