Given Latitude and Longitude , how do I get the road type only for that point

Hi , I am trying to use OSM in python and I notice that when i give a latitude and longitude , i get information of all the coordinates surrounding it. But i only need the information for that particular coordinates.

G = ox.graph_from_point((latitude, longitude),network_type=‘drive’)

What can i do here ? I would like to get the road information ONLY for this point.