> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peaq.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Node Info

> Inspect network, wallet, and config details exposed by `/info`.

Use the info service to confirm how the core node is configured before running sensitive operations.

```bash theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
ros2 service call /peaq_core_node/info \
  peaq_ros2_interfaces/srv/GetNodeInfo {}
```

Example response (abridged):

```json theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
{
  "network": "agung",
  "wallet_address": "5F...xyz",
  "confirmation_mode": "FAST",
  "events_enabled": true,
  "version": "1.3.0",
  "build_timestamp": "2025-10-30T09:55:12Z"
}
```

The service returns:

* Current network + RPC endpoint
* Wallet address used for signing transactions
* Default confirmation mode
* Event streaming status
* Package version and build metadata

### Operational Uses

* Validate you are pointing at the correct network before funding wallets
* Capture node metadata in deployment runbooks or monitoring dashboards
* Compare versions across fleet deployments to ensure consistency

Pair this with [Event Streams](/peaqchain/sdk-reference/robotics-sdk/ros2/messaging/event-streams) to monitor transaction outcomes in real time.
