Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML Services
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Managed Service for Apache Airflow™
  • Getting started
    • All guides
    • Working with Apache Airflow™ interfaces
    • Transferring logs from Apache Airflow™ to Cloud Logging
  • Access management
  • Pricing policy
  • Terraform reference
  • Yandex Monitoring metrics
  • Release notes
  • FAQ

In this article:

  • Working with the web interface
  • Using the Apache Airflow™ API
  1. Step-by-step guides
  2. Working with Apache Airflow™ interfaces

Working with Apache Airflow™ interfaces

Written by
Yandex Cloud
Updated at September 12, 2025
  • Working with the web interface
  • Using the Apache Airflow™ API

To work with Managed Service for Apache Airflow™, you can use the web interface or the Apache Airflow™ API.

Only users with the managed-airflow.user role or higher can open the web interface or send an API request. The API checks the role via the IAM token used for authentication.

Apache Airflow™ interfaces can be accessed from the internet, so the role check provides additional security. Even if an attacker has a link to the web interface and the admin password to get authenticated with, they will not have the role required to access the interface.

Working with the web interfaceWorking with the web interface

  1. In the management console, open the cluster page.

  2. Go to the Managed Service for Apache Airflow™ web server page.

  3. In the web interface that opens, enter the credentials:

    • Username: Admin
    • Password: Admin user password that you set when creating a cluster

For more information about how to use the web interface, see the Apache Airflow™ documentation.

Using the Apache Airflow™ APIUsing the Apache Airflow™ API

You can make Apache Airflow™ API requests from VMs located in your Managed Service for Apache Airflow™ cluster cloud network.

  1. In the cloud network hosting the Managed Service for Apache Airflow™ cluster, create a Linux-based VM.

  2. Set up a NAT gateway to connect to the VM.

  3. Get an IAM token for a user account with the managed-airflow.user role or higher. The way you get a token depends on your account type:

    • Yandex account
    • Service account
    • Federated account
  4. Make an API request, e.g., using cURL. In the authorization parameters, enter your username and password.

    Request example:

    curl \
        --request GET \
        'https://c-<cluster_ID>.airflow.yandexcloud.net/api/v1/dags' \
        --user 'admin:<admin_user_password>' \
        --header 'Content-Type: application/json' \
        --header 'X-Cloud-Authorization: Bearer <IAM_token>'
    

    The request returns a list of DAG files. Check an example of the response in the Apache Airflow™ API documentation.

Warning

To use basic authentication with the Apache Airflow™ API as in the example above, set the value of the api.auth_backends : airflow.api.auth.backend.basic_auth property in the Airflow configuration section when creating or updating the cluster. Learn more about the API authentication in the Apache Airflow™ documentation.

Was the article helpful?

Previous
Reading a file from Yandex Object Storage
Next
Transferring logs from Apache Airflow™ to Cloud Logging
© 2025 Direct Cursus Technology L.L.C.