---
title: "Asset holders list"
method: GET
path: "/explorer/{network}/asset/{asset}/holders"
tags: ["Asset Info API"]
---

# Asset holders list

`GET /explorer/{network}/asset/{asset}/holders`

Returns a list of all accounts holding non-zero amount of the given asset sorted by the balance size. Accounts with an established trustline but with zero balance excluded from the results set.
This API endpoint follows Stellar Horizon API response format convention. A response result contains records and navigation links.

## Path parameters

- `network` 'public' | 'testnet', required — Stellar network
- `asset` string, required — An asset in the format {CODE}-{ISSUER} (or "XLM" for Stellar lumens)

## Response `200`

Asset holders fetched

- object — List API response
  - `_links` object
    - `self` ListApiResponseNavLink
      - `href` string
    - `prev` ListApiResponseNavLink
      - `href` string
    - `next` ListApiResponseNavLink
      - `href` string
  - `_embedded` object
    - `records` AssetHolder[]
      - `account` string — Account address (ED25519 public key)
      - `balance` string — Asset balance in stroops
      - `paging_token` string — Paging token

## Other responses

- `400` — Invalid request parameters
- `404` — Asset not found

---

[API](https://skmtc.net/stellar-expert/apis/stellarexpert-api.md) · [All operations](https://skmtc.net/stellar-expert/apis/stellarexpert-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stellar-expert/stellarexpert-api/revisions/5d96955edab4/schema)
