Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/aptostokens-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}