# Parallax Seller Analytics

> Parallax Seller Analytics is a paid API for AI agents from parallax402.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns settlement analytics for a single x402 seller over the indexed window, including USDC revenue, purchase count, distinct buyers, organic share, recurring buyers, buyer half-life, and facilitator mix.

## Facts

- Endpoint: GET https://parallax402.com/v1/seller
- 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/parallax-seller-analytics-7ffcf2f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-xbD3o0P39Hq8NIC7gqhS

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 parallax-seller-analytics-7ffcf2f0
```

Example prompt: Pull the Parallax seller analytics for my wallet 0xAbC1234567890abcdef1234567890abcdef123456 — I want to see settled USDC, distinct buyers, organic share, recurring buyers, half-life, and the facilitator breakdown.

## When to prefer this

Use this endpoint when you need a comprehensive, single-seller funnel view from the x402 settlement graph — specifically when you want organic-share-adjusted buyer counts, recurring buyer rates, half-life estimates, and facilitator attribution all in one call. Prefer it over the economy-wide census endpoint when the query is seller-specific rather than ecosystem-wide, and over the payer dossier endpoint when the subject is a seller rather than a buyer wallet.

## Known failure modes

- Unknown seller address or hostname returns no data or empty result
- Malformed 0x address (wrong length or non-hex) causes validation error
- Seller exists but has no indexed activity within the window, returning zeroed metrics
- Network or upstream indexer unavailability causes timeout or 5xx
- Missing required `seller` query parameter returns 400 bad request

## How this service works

The funnel, honestly, for one seller over the indexed window: settled USDC and purchases, distinct buyers, organic share after self-test exclusion, recurring buyers, buyer half-life and the facilitator mix.

## Output

A JSON envelope containing: as_of timestamp, frame identifier, coverage and method metadata, attribution tier, window_days, and a fact object with payTo address, host list, settled USDC, purchase count, distinct buyer count, organic_share (fraction after self-test exclusion), recurring_buyer count, half_life_days, and per-facilitator share breakdown.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "seller"
     ],
     "properties": {
      "seller": {
       "type": "string",
       "description": "the seller, as its payTo address (0x-prefixed, 20 bytes) or one of its hostnames"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "format"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "format": {
     "type": "string",
     "const": "application/json",
     "description": "the seller envelope: as_of, frame, coverage, method, attribution, tier, window_days and a fact carrying payTo, hosts, usdc, purchases, buyers, organic_share, recurring_buyers, half_life_days and the facilitator shares"
    },
    "example": {
     "type": "object",
     "description": "a worked response, shortened — the shape a full answer has"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parallax-seller-analytics-7ffcf2f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parallax402.com](https://www.zero.xyz/host/parallax402.com/llms.txt)
