# Token Holders

## GET /token-holders

> Gets all token holders across all Nest vaults, aggregated by address and token

```json
{"openapi":"3.0.0","info":{"title":"Nest API","version":"1.0.0"},"servers":[{"url":"https://api.nest.credit/v1","description":"Nest API Server"}],"paths":{"/token-holders":{"get":{"tags":["Token Holders"],"description":"Gets all token holders across all Nest vaults, aggregated by address and token","responses":{"200":{"description":"Token holders data","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"holders":{"type":"array","items":{"type":"object","properties":{"address":{"type":"string","description":"Holder wallet address"},"tokenAddress":{"type":"string","description":"Token address (EVM vault address or Solana mint address)"},"balance":{"type":"number","description":"Token balance (decimal-adjusted)"},"value":{"type":"number","description":"USD value of holdings"}},"required":["address","tokenAddress","balance","value"]},"description":"List of token holders sorted by value descending"},"count":{"type":"number","description":"Total number of holders"}},"required":["holders","count"]}},"required":["data"]}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string"}},"required":["error"]}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.nest.credit/developers/api/token-holders.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
