# x402 Bazaar Token Holder Distribution Analyzer

> x402 Bazaar Token Holder Distribution Analyzer is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns top-10 holder percentages, total holder count, whale concentration risk, and LP-lock percentage for a Base token to help agents assess distribution fairness before trading.

## Facts

- Endpoint: POST https://api.relai.fi/relay/1782567677091/api/x402/holders
- 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/x402-bazaar-token-holder-distribution-analyzer-920b8533
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jtZajD3hQGZ_e2e0ntPuM

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 x402-bazaar-token-holder-distribution-analyzer-920b8533 -d '<json body>'
```

Example prompt: Before I buy this Base token at 0x1234...abcd, can you check how concentrated the holder distribution is — who the top 10 holders are, what percentage they control, the total holder count, and whether the liquidity is locked?

## When to prefer this

Use this endpoint when an AI agent needs to evaluate token holder distribution and whale concentration risk on the Base network before recommending or executing a trade. Prefer this over generic token info endpoints when the specific concern is fair distribution, rug-pull risk, or LP-lock status. Best paired with price and liquidity endpoints for a full pre-trade due diligence check.

## Known failure modes

- Invalid or non-existent token contract address returns an error
- Token not indexed by GoPlus returns empty or null holder data
- Payment not completed (402 returned) means the request must be retried after paying $0.01 USDC on Base
- Network or relay timeout causes a 5xx error
- Token on a chain other than Base may not be supported

## How this service works

Top-10 holders with their %, holder count, concentration level (whale risk), and LP-lock %, from GoPlus. Lets agents judge how fairly a token is distributed before trading. No API key required. Paid via x402: $0.01 in USDC on Base (eip155:8453) to 0x973a31858f4d2125f48c880542da11a2796f12d6. Returns 402 with payment requirements; pay and retry.

## Output

Returns top-10 token holders with their individual ownership percentages, total holder count, a concentration/whale-risk level indicator, and LP-lock percentage — sourced from GoPlus — enabling agents to judge distribution fairness and rug-pull risk before executing a trade.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-bazaar-token-holder-distribution-analyzer-920b8533/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
