Returns the Gateway API version and current ledger state.
Network Gateway Information
The ledger state against which the response was generated. Can be used to detect if the Network Gateway is returning up-to-date information.
const response = await fetch('https://xrd-gateway.nownodes.io/status/gateway-status', { method: 'POST', headers: { "api-key": "text" }, }); const data = await response.json();
{ "ledger_state": { "network": "mainnet", "state_version": 0, "proposer_round_timestamp": "text", "epoch": 0, "round": 0 }, "release_info": { "release_version": "text", "open_api_schema_version": "text", "image_tag": "text" } }