# Parallax Seller Profile — x402 Economy Analytics

> Parallax Seller Profile — x402 Economy 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 on-chain settlement metrics for a specific x402 seller (by wallet address or hostname), including USDC earned, buyer counts, purchase volume, facilitator breakdown, and recurrence stats.

## Facts

- Endpoint: GET https://parallax402.com/v1/seller/%7BaddressOrHost%7D
- 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-profile-x402-economy-analytics-13e562df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pw4M2Dv7mDg26d5QOjTcW

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-profile-x402-economy-analytics-13e562df
```

Example prompt: Pull the Parallax settlement profile for api.example.com — I want to see their total USDC earned, how many distinct buyers they've had, and what share of purchases came through Coinbase's facilitator versus others.

## When to prefer this

Use this endpoint when you need a comprehensive, read-from-settlement-graph seller profile for a specific x402 participant — covering revenue, buyer behavior, facilitator attribution, and retention metrics in a single call. Prefer this over the funnel or co-purchase sibling endpoints when you want a holistic seller snapshot rather than a single dimension of analysis. Best suited for due diligence, competitive research, or monitoring your own x402 API's economic performance.

## Known failure modes

- Unknown address or hostname returns 404 or empty fact object
- Seller has no indexed activity — returns zero values or null fact
- Malformed address format causes 400 validation error
- Seller indexed under a different host alias than queried — may need canonical hostname
- Data freshness lag — as_of date may be hours or days behind real-time settlement

## How this service works

Not quoted. Not estimated. Read from the settlement graph, stamped with frame and coverage, priced per fact for people and their agents.

## Output

A JSON object containing: total USDC earned by the seller, list of associated hosts, payment destination address, distinct buyer count, total purchase count, per-facilitator attribution shares, organic traffic share, buyer half-life in days, recurring buyer count, coverage tier (full/partial), settlement frame identifier, and the as-of date for the data snapshot.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "format": "application/json",
 "example": {
  "fact": {
   "usdc": 41.02,
   "hosts": [
    "api.example.com"
   ],
   "payTo": "0xabababababababababababababababababababab",
   "buyers": 96,
   "purchases": 3821,
   "facilitators": {
    "coinbase": 0.91,
    "unattributed": 0.09
   },
   "organic_share": 0.958333,
   "half_life_days": 4,
   "recurring_buyers": 12
  },
  "tier": "full",
  "as_of": "2026-09-01",
  "frame": "settler-eip3009-base"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parallax-seller-profile-x402-economy-analytics-13e562df/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)
