diff --git a/api-reference/public/README.md b/api-reference/public/README.md index a93fae6..eec9714 100644 --- a/api-reference/public/README.md +++ b/api-reference/public/README.md @@ -16,7 +16,6 @@ These endpoints are publicly accessible and require no authentication. - `POST /api/tokens/fetch-by-pool-addresses` — Returns token data for multiple pool addresses (max 100). - `GET /api/tokens/search` — Search tokens by query or FIDs. *(deprecated)* - `GET /api/tokens/estimate-rewards-by-pool-address` — Estimate uncollected rewards for a pool. *(deprecated)* -- `GET /api/tokens/{address}/holders` — Returns holder count and top-10 concentration for a token. ### Users diff --git a/api-reference/public/tokens.md b/api-reference/public/tokens.md index b8cab9c..9da3642 100644 --- a/api-reference/public/tokens.md +++ b/api-reference/public/tokens.md @@ -203,36 +203,3 @@ Search tokens by query or FIDs. Estimate uncollected rewards for a pool. **Authentication:** Public - ---- - -### GET `/api/tokens/{address}/holders` - -Returns holder count and top-10 concentration for a token. - -**Authentication:** Public - -**Path Parameters** - -| Parameter | Type | Required | Default | Description | -|-----------|------|----------|---------|-------------| -| `address` | `address` | Yes | — | Token contract address. | - -**Query Parameters** - -| Parameter | Type | Required | Default | Description | -|-----------|------|----------|---------|-------------| -| `chain` | `number` | No | 8453 | Chain ID (defaults to Base). | - -**Response:** Holder statistics. - -```json -{ - "totalHolders": 4521, - "top10Sum": 45.2 -} -``` - -> Cached for 5 minutes. - ----