> For the complete documentation index, see [llms.txt](https://services.thequadblock.com/services/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.thequadblock.com/services/mainnet/planq/cli-cheatsheet/info-and-status.md).

# Info & Status

command for Information about node, validator and status

<table><thead><tr><th align="center">Function </th><th align="center">Command</th></tr></thead><tbody><tr><td align="center">Synchronize Information</td><td align="center"><p></p><pre><code>sudo planqd status 2>&#x26;1 | jq .SyncInfo
</code></pre><p>or</p><pre class="language-shellscript" data-title="define your PORT first."><code class="lang-shellscript">curl -s localhost:${PORT}657/status | jq .result.sync_info
</code></pre></td></tr><tr><td align="center">Node Information</td><td align="center"><p></p><pre class="language-shellscript"><code class="lang-shellscript">sudo planqd status 2>&#x26;1 | jq .NodeInfo
</code></pre></td></tr><tr><td align="center">Show Node ID</td><td align="center"><p></p><pre class="language-shellscript"><code class="lang-shellscript">sudo planqd tendermint show-node-id
</code></pre></td></tr><tr><td align="center">Show Node Logs</td><td align="center"><p></p><pre class="language-shellscript"><code class="lang-shellscript">journalctl -fu planqd -o cat
</code></pre></td></tr><tr><td align="center">Get List of Connected Peers</td><td align="center"><p></p><pre class="language-shellscript" data-title="define your PORT first"><code class="lang-shellscript">curl -sS http://localhost:$PORT/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
</code></pre></td></tr><tr><td align="center">Check Peer ID and Port</td><td align="center"><p></p><pre class="language-shellscript"><code class="lang-shellscript">echo $(planqd tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.planqd/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
</code></pre></td></tr></tbody></table>
