Ir al contenido
GET /v1/nfts

Serials inside an NFT collection

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/hederatokens-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "nfts": [
            {
                "owner": "0.0.410226",
                "deleted": true,
                "metadata": "Xhkusw==",
                "serial_number": 1,
                "created_timestamp": "1630615611.855620000"
            }
        ],
        "note": "The minted serials inside one Hedera NFT collection — each serial with its current owner account, decoded per-serial metadata (often an IPFS/HCS pointer) and whether it has been burned. Pass token_id for a specific collection, or omit to use the first NFT collection on the network.",
        "count": 1,
        "source": "Hedera Mirror Node",
        "token_id": "0.0.410224"
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:02.051Z",
        "request_id": "f623bb50-67e4-413f-a139-3f4c578ca7f8"
    },
    "status": "ok",
    "message": "NFTs retrieved successfully",
    "success": true
}