What API endpoint returns the MinIO version information, and how should the response be parsed?
The endpoint `http://127.0.0.1:9090/api/v1/admin/info` returns version and node information in JSON format when called with a valid `Cookie: token=xxxx`. Because the response may contain multiple servers, the implementation must traverse the JSON array to extract the version for each node, as demonstrated in the open-source Python tool.
MinIOversion informationAPIJSON parsingnode traversal