/networks/{networkId}/nodes
http://managedblockchain.{region}.amazonaws.com/networks/{networkId}/nodes<p>Returns information about the nodes within a network.</p> <p>Applies to Hyperledger Fabric and Ethereum.</p>
Path Parameters
The unique identifier of the network for which to list nodes.
Query Params
<p>The unique identifier of the member who owns the nodes to list.</p> <p>Applies only to Hyperledger Fabric and is required for Hyperledger Fabric.</p>
An optional status specifier. If provided, only nodes currently in this status are listed.
The maximum number of nodes to list.
The pagination token that indicates the next set of results to retrieve.
Pagination limit
Pagination token
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'http://managedblockchain.{region}.amazonaws.com/networks/{networkId}/nodes' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}