How do I get a list of all unpaused(running) dags using airflow API?
I tried GET /dags
endpoints but I did not find a query string to filter paused dags, isn't there something like is_paused
query parameter or body parameter perhaps?
P.S I'm currently using airflow version 2.2.3 +
Currently Airflow API doesn't support this filter, you should get all the dags and filter them locally.
If you really need this filter, you can create an Airflow plugin which exposes a simple API to fetch the unpaused dags and return them.
Update: this filter will be available in Airflow API from 2.6.0 (PR)