Get entity by coordinates

how to get name of object by coordinates. for example i have entity in pos(1,32,4) how to get name

It’s not possible unless you check every entity to see if it’s near a position.

I would think about how you would store the data differently. For example, if you have code that moves it to (1,32,4) then you can add that to some look up table so that it’s easy to find later.

Okay, thanks