Naar de inhoud
GET /v1/meta

Service metadata and endpoint catalog

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}