# Token Holder Distribution & Rug Risk Analysis

> Token Holder Distribution & Rug Risk Analysis is a paid API for AI agents from opportunity-api-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns top-10 holder breakdown, holder concentration verdict, LP lock %, and rug/whale risk signals for any EVM token using GoPlus data.

## Facts

- Endpoint: GET https://opportunity-api-production.up.railway.app/api/token-holders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-holder-distribution-rug-risk-analysis-c68467df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DrYmVlU8-TW2G5MZCpJ1u

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 token-holder-distribution-rug-risk-analysis-c68467df
```

Example prompt: Can you check the holder distribution for the token at 0x6982508145454Ce325dDbE47a25d4ec3d2311933 on Ethereum — I want to know if it's whale-dominated, what the top-10 concentration looks like, and whether there are any rug or LP lock risks?

## When to prefer this

Use this endpoint when you need a quick, structured risk assessment of token holder distribution before investing or listing a token — especially when you want GoPlus-sourced data with a pre-computed DISTRIBUTED/MODERATE/HIGH verdict and LP lock signal rather than raw on-chain queries. Best for DeFi due diligence workflows across Ethereum, Base, BSC, Arbitrum, Polygon, Optimism, and Avalanche.

## Known failure modes

- Invalid or unrecognized contract address returns an error or empty result
- Unsupported chain identifier causes a 400 or validation error
- Token not indexed by GoPlus returns no holder data
- Rate limiting or upstream GoPlus API unavailability causes 5xx errors
- Newly deployed token with no GoPlus data returns null or incomplete fields

## How this service works

Holder distribution for a token (GoPlus): top-10 holders with %, top10 concentration, creator %, LP lock %, DISTRIBUTED/MODERATE/HIGH verdict. Rug/whale signal. Params: chain, address.

## Output

Returns the top-10 token holders with their individual percentage of supply, the aggregate top-10 concentration percentage, the creator's remaining holding %, the LP lock percentage, a distribution verdict (DISTRIBUTED / MODERATE / HIGH concentration), and binary rug and whale risk signals.

## 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": [
      "chain",
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "ethereum|base|bsc|arbitrum|polygon|optimism|avalanche"
      },
      "address": {
       "type": "string"
      }
     }
    }
   },
   "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/token-holder-distribution-rug-risk-analysis-c68467df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from opportunity-api-production.up.railway.app](https://www.zero.xyz/host/opportunity-api-production.up.railway.app/llms.txt)
