Python API

Where can I find out what camera is bound to what marker or vice versa in th API? I only want to list the camera and the marker or the marker and the camera and I’m lost.

Not sure exactly what you are trying to do, but you can find the markers in:
bpy.data.scene[].timeline_markers

the linked camera is an attribute of the marker
bpy.data.scene[].timeline_markers[].camera

Thank you so much. I spent hours looking for that. I didn’t look in the attributes. Again thanks so much.

Not a problem, I’m glad I could help.