'subscriptions feed (youtube.search().list)

How do I query my "subscriptions feed"?

i.e how do I search and list my subscriptions feed (https://www.youtube.com/feed/subscriptions), in an analogue way one searches anything else in youtube via the youtube data api (v3), in python?

request = youtube.search().list(
    part="snippet",
    maxResults=25,
    q="surfing"
    )
response = request.execute()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source