Vai al contenuto
GET /v1/meta

Service metadata and endpoint catalog

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/filecoin-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "Filfox Filecoin explorer API (filfox.info, live)",
        "service": "filecoin-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tipset": "A tipset's height, time, blocks and messages (height=latest|N).",
            "GET /v1/address": "An address's FIL balance and (if a provider) storage power (address=f02620).",
            "GET /v1/network": "Chain height, total network storage power and active providers.",
            "GET /v1/providers": "Storage providers ranked by pledged power (limit=20)."
        },
        "description": "Live on-chain data from the Filecoin network (FIL), the decentralized storage blockchain where miners are storage providers that pledge real disk capacity, via the public Filfox explorer. The address endpoint returns an address's FIL balance, actor type, message count and — for a storage provider — its raw and quality-adjusted storage power and sector size; the providers endpoint ranks storage providers by power with each one's capacity, blocks mined and rewards; the tipset endpoint returns a tipset (Filecoin's block) with its height, time, block count and messages; the network endpoint returns the chain height, total network storage power and number of active storage providers. Live, no key, nothing stored. Distinct from the Bitcoin, Stacks, Celestia, Cosmos and EVM on-chain APIs and from price feeds — this is Filecoin's own FIL account state, storage-provider power and decentralized-storage economy.",
        "chain_height": 6093118,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T14:00:17.296Z",
        "request_id": "24db58dc-6612-4b96-911b-767be965e6db"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}