Ir al contenido
GET /v1/meta

Service metadata

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptostokens-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptostokens-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "sample": {
            "top_token": "zINR"
        },
        "source": "official public Aptos Indexer GraphQL (indexer.mainnet.aptoslabs.com), keyless",
        "service": "aptostokens-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tokens": "Browse/rank Aptos fungible assets by supply (limit).",
            "GET /v1/holders": "A fungible asset's holders and decimal-adjusted balances (asset_type; omit for the top asset).",
            "GET /v1/collections": "Browse Aptos NFT collections by supply (limit)."
        },
        "description": "Browse the Aptos token universe live from the official public Aptos Indexer GraphQL: discover and rank fungible assets (asset type, name, symbol, decimals, supply, standard), browse NFT collections ranked by supply, and list the holders of any fungible asset with decimal-adjusted balances. The discovery, NFT and distribution layer for Aptos wallets, token explorers and NFT marketplaces. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:57.039Z",
        "request_id": "592c42d9-fbcc-48a8-a34e-2bcd07e77e75"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}