# 402.com.tr Token Holder Distribution & Whale Risk Analyzer

> 402.com.tr Token Holder Distribution & Whale Risk Analyzer is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns top-10 holders with percentage ownership, total holder count, concentration/whale-risk level, and LP-lock percentage for any Base token contract via GoPlus.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/holders
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-token-holder-distribution-whale-risk-analyzer-e2a708c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fynEXHVjsX6ujR0Qpnsub

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 402-com-tr-token-holder-distribution-whale-risk-analyzer-e2a708c4
```

Example prompt: Before I trade this token, can you check how its ownership is distributed — I want to know the top holders and their percentages, the total holder count, whether there's whale concentration risk, and how much of the LP is locked? The contract address is 0x4200000000000000000000000000000000000006.

## When to prefer this

Use this endpoint when an agent needs to evaluate token distribution fairness and whale risk before executing a trade or recommending a Base token. Ideal for pre-trade due diligence workflows where holder concentration, total holder count, and LP-lock status are key risk signals. Prefer over generic blockchain explorers when you need pre-parsed, risk-scored holder data in a single call without an API key.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty response
- Contract address for a non-Base network token may return no data
- GoPlus data unavailable or rate-limited upstream causes failure
- Token too new or obscure to have holder data indexed
- Malformed address format triggers validation error

## 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.

## Output

Returns a structured JSON object containing the top-10 token holders with their wallet addresses and ownership percentages, the total number of unique holders, a concentration/whale-risk level indicator, and the percentage of liquidity pool tokens that are locked — sourced from GoPlus security data.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-token-holder-distribution-whale-risk-analyzer-e2a708c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
