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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/algorandasa-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandasa-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandasa-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/algorandasa-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": {
            "name": "USDC",
            "default_asset": 31566704
        },
        "source": "public Algonode indexer (mainnet-idx.algonode.cloud), keyless",
        "service": "algorandasa-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One ASA in full: supply, decimals, URL, role addresses (id; omit for USDC).",
            "GET /v1/assets": "Browse the ASA space, paginated (limit, next).",
            "GET /v1/search": "Search ASAs by name (name, limit)."
        },
        "description": "Read Algorand Standard Assets (ASAs) — Algorand's native token standard — live from the public Algonode indexer: browse the ASA space paginated, look up a single ASA in full (name, unit, supply, decimals, URL and the manager/reserve/freeze/clawback role addresses) and search ASAs by name. The token layer for Algorand wallets, DEXs and token explorers. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:27.941Z",
        "request_id": "28b433c4-899e-4fd9-af78-019326fb40dc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}