Relationship between crossings defined as nodes and the road

We are trying to determine the relationship between a crossing that is defined as node and the road that it is connected to. For example, if you go to https://www.openstreetmap.org/edit#map=19/51.45682/-0.97189 you will see a road called Station Road. At the southern end of this road before Station Road intersects with Friar Street, there is a single crossing defined as a node.

We want to be able to determine with there is a simple way of relating that node to the road that it is connected to. There is nothing in the tags and there are no other relationships that I can see between that node and the road.

Can someone let me know if there is a way of doing this?
Thanks
Steven

The info you ask for is showed in the data of each node
https://www.openstreetmap.org/node/4177840138

Or using the API https://wiki.openstreetmap.org/wiki/API_v0.6
https://www.openstreetmap.org/api/0.6/node/4177840138/ways

https://www.openstreetmap.org/node/4177840138#map=19/51.45688/-0.97183 is one of the nodes that form Station Road!

If you look at it in the web interface (I think links to the editor risk accidental edits, and might require a login), you see:

If you look at Station Road, https://www.openstreetmap.org/way/3109894 , you see:

where 4177840138 is the crossing.

There is no ambiguity, as it only belongs to Station Road.

Although I would expect any pedestrian navigator to be working with local data covering the whole area, rather than making piecemeal requests, you can find the way(s) for the node using this API: http://wiki.openstreetmap.org/wiki/API_v0.6#Ways_for_node:GET.2Fapi.2F0.6.2Fnode.2F.23id.2Fways , e.g. http://www.openstreetmap.org/api/0.6/node/4177840138/ways and you can find the crossing on the road using, the next API, e.g., http://www.openstreetmap.org/api/0.6/way/3109894/full

To re-iterate the above, any production tool should not be using piecemeal requests, and should, almost certainly, not be using www.openstreetmap.org as its API server.

Thanks for excellent and detailed responses. If I have any further questions, I will get back to you.
Steven

Just for info, there’s a dev server at https://master.apis.dev.openstreetmap.org/ . If you want to experiment with stuff (the API etc.) that’d be a great place to do it, becase you can create whatever data you want.

At SomeoneElse - Very useful. Thanks!