# Losbeto Holder Concentration

> Losbeto Holder Concentration is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns holder concentration data for a crypto asset, showing how ownership is distributed across wallets

## Facts

- Endpoint: GET https://api.losbeto.xyz/holder-concentration
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-holder-concentration-4c552b43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Jaqk0RIUNCoUSH-SWoks

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 losbeto-holder-concentration-4c552b43
```

Example prompt: Can you check the holder concentration for the token PEPE on Ethereum — I want to know if it's whale-dominated or has a healthy distribution across wallets?

## When to prefer this

Choose this endpoint when you need on-chain holder distribution analysis for crypto assets without managing API keys or subscriptions — particularly useful for quick pre-trade risk checks or DeFi due diligence. It pays per call via USDC on Base or Solana (x402), making it ideal for agents that only need occasional holder concentration lookups rather than a full analytics platform subscription.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty result
- Token contract address not found on specified chain
- Payment failure via x402 (insufficient USDC balance or wrong network)
- Rate limit or service unavailability returns a non-200 response
- Newly launched token with insufficient on-chain data may return partial results

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

A JSON object containing holder concentration metrics for the requested asset, including distribution of ownership across wallet tiers (top 1, top 10, top 100 holders), percentage of supply held by whales, and potentially a concentration index score such as Gini coefficient or HHI.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "properties": {
      "format": {
       "description": "Response format (json)",
       "type": "string"
      }
     },
     "type": "object"
    }
   },
   "type": "object"
  },
  "output": {
   "properties": {
    "example": {
     "description": "Top USDC holder concentration on Solana via Helius RPC: who holds the float, how concentrated it is, and the share held by the largest accounts. Useful for judging how much of a token's supply can move at once.",
     "type": "object"
    }
   },
   "type": "object"
  }
 },
 "required": [
  "input"
 ],
 "type": "object"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-holder-concentration-4c552b43/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.losbeto.xyz](https://www.zero.xyz/host/api.losbeto.xyz/llms.txt)
