Skip to main content
The DAG L1 cluster endpoint provides information about all peers known to this node in the DAG Layer 1 cluster. L1 nodes form the transaction validation and block production layer that feeds into Global L0 snapshots.
All endpoints return the following response headers:
  • X-Id — The node’s public key identifier
  • X-Session-Token — The current cluster session token
  • Request-Signature — Cryptographic signature of the response for verification

GET /cluster/info

Returns the list of all peers currently known to this DAG L1 node, along with their state and connection details.
curl https://<node-host>:9010/cluster/info
Response 200 OK Returns an array of Peer objects.
[]
array
Array of peer objects
Example response:
[
  {
    "id": "c7f9a08bdea7ff5f51c8af16e223a1d751bac9c541125d9aef5658e9b7597aee",
    "ip": "13.56.42.10",
    "publicPort": 9010,
    "p2pPort": 9011,
    "session": "20180203073000",
    "state": "Ready"
  }
]

Build docs developers (and LLMs) love