AR.IO LogoAR.IO Documentation

Network

Get Arweave node info, peers and nework status

Network and Gateway Status, alternate endpoint.

An alternative option for accessing network and Gateway status.

GET
/info

Response Body

curl -X GET "https://ardrive.net/info"
{
  "network": "string",
  "version": 0,
  "release": 0,
  "current": "string",
  "blocks": 0,
  "peers": 0,
  "queue_length": 0,
  "node_state_latency": 0
}

Get active peer list.

Gets a list of ip addresses for peers your Gateway is currently connected with.

GET
/peers

Response Body

curl -X GET "https://ardrive.net/peers"
[
  "string"
]

Get current block height.

Gets the current block height of the Arweave network.

GET
/height

Response Body

curl -X GET "https://ardrive.net/height"
"string"

Get the current transaction anchor.

Get the current transaction anchor of the Arweave network.

GET
/tx_anchor

Response Body

curl -X GET "https://ardrive.net/tx_anchor"
"string"

How is this guide?