Was this helpful?
Gets the current status of the network (ICRC-1 ledger), including the current block identifier, genesis block identifier, and sync status.
curl -L \ --request POST \ --url 'https://icrc-mainnet.icp.validationcloud.io/v1/<YOUR_API_KEY_HERE>/network/status' \ --header 'Content-Type: application/json' \ --data '{ "network_identifier": { "blockchain": "Internet Computer", "network": "mxzaz-hqaaa-aaaar-qaada-cai", "sub_network_identifier": { "network": "text", "metadata": { "ANY_ADDITIONAL_PROPERTY": "anything" } } } }'
{ "current_block_identifier": { "index": 1, "hash": "text" }, "current_block_timestamp": 1, "genesis_block_identifier": { "index": 1, "hash": "text" }, "peers": [ { "peer_id": "text", "metadata": { "ANY_ADDITIONAL_PROPERTY": "anything" } } ] }