Are path details about bike infrastructure available?

Hi!
I am currently working on a simple mode choice model for a german City.
So I am creating a resistance matrix between locations containing the travel time and distance between all locations for car and public transport (both from the Google distance matrix API) and bicycle (from the Graphhopper Matrix API).

As the choice whether to take a bike for a trip not only depends on the trip length, but also on the bicycle infrastructure, I would need some kind of variable which tells me, how nice it is to cycle on the respective bike routes. The path details I found do not really help me. Is it somehow possible to retrieve tags such as bicycle=*? Or alternatively can I see the OSM IDs of the path nodes, so that I can directly check in OSM?

Thanks for your support!

The path details of the Routing API returns the “bike_priority” path details, this value probably bests represents what you are searching for. But what I read about the proprietary Matrix API these details are not exposed there.

Hi thanks!
So the best would be to write a loop in which I send a routing query for each relation individually?

I will try that!