Ir al contenido
GET /v1/holders

A fungible asset's holders and balances

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/aptostokens-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/aptostokens-api/v1/holders" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptostokens-api/v1/holders", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptostokens-api/v1/holders");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/aptostokens-api/v1/holders",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "name": "Indian Rupee ZVT",
        "note": "The holders of one Aptos fungible asset and their decimal-adjusted balances, largest first — the distribution view the per-address reader can't give you. Pass asset_type (from /v1/tokens), or omit to use the highest-supply asset.",
        "count": 25,
        "source": "Aptos Indexer",
        "symbol": "zINR",
        "holders": [
            {
                "amount": 184467440324.49,
                "amount_raw": "18446744032449000000",
                "owner_address": "0xaa315f2d30d345b1de7c877786a931db746a7fe634b4e7a6f6e864a35b969b96"
            },
            {
                "amount": 71473124712.2207,
                "amount_raw": "7147312471222070000",
                "owner_address": "0xa77082fb614041238be116fd57ef0f55a8150c87fe1547afbb9523ecedca7b49"
            },
            {
                "amount": 185387196.04,
                "amount_raw": "18538719604000000",
                "owner_address": "0xcf536159d506f6c41d6a72391e80cfa17e46d45ae26e40c5fb041e9be7f6c750"
            },
            {
                "amount": 687610,
                "amount_raw": "68761000000000",
                "owner_address": "0x67ccf7d63d8db57d94aa93fecf0970b2325d89316e333b47a94897faa275b953"
            },
            {
                "amount": 625517,
                "amount_raw": "62551700000000",
                "owner_address": "0x6ac120097d1b3b40670a2aa1db29a5fa251fc77e613db8bef22adb34657515a0"
            },
            {
                "amount": 618321.77,
                "amount_raw": "61832177000000",
                "owner_address": "0x71e039b572f2f64049757fe9f0f340e2e3c46cd32a35483079eafa938b547a2f"
            },
            {
                "amount": 617226.01,
                "amount_raw": "61722601000000",
                "owner_address": "0x51d7d71d19c592cf266e1c3688eacfce2079ea2d88fe53c2b7bc98f403493b42"
            },
            {
                "amount": 450174,
                "amount_raw": "45017400000000",
                "owner_address": "0x9b25a07deea4b88b72bd3a53b84141682b3ccf4f7e19d3fcca3226977f8c827f"
            },
            {
                "amount": 439155,
                "amount_raw": "43915500000000",
                "owner_address": "0x2d6f87140e49a51e3019b88d95b63404a9a08fb5617630763da55973f847580d"
            },
            {
                "amount": 438829,
                "amount_raw": "43882900000000",
                "owner_address": "0xbcc60d935cf42cf73f8c5c070c5e85b2be6c79e2ab00abe4f928700e5e907326"
            },
            {
                "amount": 433439,
                "amount_raw": "43343900000000",
                "owner_address": "0x3df4244ff82446c4a6e374fd2ff3e9f94c3552dcd8294623410b621ed1491ca0"
            },
            {
                "amount": 426763,
                "amount_raw": "42676300000000",
                "owner_address": "0x47775906b23e3cf665eaa01fcaeea9165fddd25b4e76e73d6e8302f88634e9e2"
          
…