/v1/clusters/{clusterArn}/nodes
http://kafka.{region}.amazonaws.com/v1/clusters/{clusterArn}/nodes<p>Returns a list of the broker nodes in the cluster.</p>
Path Parameters
<p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>
Query Params
<p>The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.</p>
<p>The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.</p>
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://kafka.{region}.amazonaws.com/v1/clusters/{clusterArn}/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}