/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/arweave-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arweave-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arweave-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/arweave-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"peers": 298,
"height": 1938670
},
"source": "public Arweave gateway (arweave.net), keyless",
"service": "arweave-api",
"endpoints": {
"GET /v1/info": "Live network status: weave height, block count, peers, node version.",
"GET /v1/meta": "This document.",
"GET /v1/block": "A block by height: hash, timestamp, tx count, reward pool (height; omit for tip).",
"GET /v1/price": "Permanent storage cost for N bytes, in winston / AR / USD (bytes; default 1 MiB)."
},
"description": "Read the Arweave permaweb live from the public gateway: quote the permanent (pay-once-store-forever) storage cost for any data size in winston, AR and USD; read live network info (weave height, blocks, peers, version); and look up any block by height with its hash, timestamp, transaction count and reward pool. The storage-and-network layer for Arweave wallets, permaweb apps and archivers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:35.174Z",
"request_id": "79c41d39-1543-4fdd-a39f-ee749b38384e"
},
"status": "ok",
"message": "Meta",
"success": true
}