Get All Notes for a ticket

Try this works my end

//https://api.hubapi.com/crm/v3/objects/notes/search

{
 "filterGroups": [
 {
 "filters": [
 {
 "propertyName": "associations.ticket",
 "operator": "EQ",
 "value":"YOUR TICKET ID"
 }
 ]
 }
 ],
 "properties": ["hs_note_body"]
}