/v1/tipset
A tipset height, time, blocks and messages
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/filecoin-api/v1/tipset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/filecoin-api/v1/tipset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/filecoin-api/v1/tipset");
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/tipset",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"height": 6093119,
"miners": [
"f03253411",
"f03559187",
"f03166677",
"f03540147",
"f03526491"
],
"source": "Filecoin",
"timestamp": "2026-06-10T13:59:30.000Z",
"block_count": 5,
"message_count": 23
},
"meta": {
"timestamp": "2026-06-10T14:00:16.328Z",
"request_id": "dd3ffdd2-944e-4146-acf6-1c23964e0527"
},
"status": "ok",
"message": "Tipset retrieved successfully",
"success": true
}