Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • 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
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex DataSphere
  • Getting started
    • All guides
      • Creating a node
      • Updating a node
      • Deleting a node
      • Configuring a node environment
      • Sending a request to a node
      • Suspending or resuming a node
      • Creating an alias
      • Updating an alias
      • Deleting an alias
      • Sending a request to an alias
    • Migrating a workflow to a new version
  • Terraform reference
  • Audit Trails events
  • Access management
  • Pricing policy
  • Public materials
  • Release notes
  1. Step-by-step guides
  2. DataSphere Inference
  3. Sending a request to an alias

Sending a request to an alias

Written by
Yandex Cloud
Updated at September 30, 2025
View in Markdown

The provided request examples work correctly only with Docker image nodes. To request a model node, install Triton Client.

All users logged into Yandex Cloud can send requests to a public alias. To send a request to a private alias, the following roles are required:

  • For users, the minimum role in the project is datasphere.community-projects.developer.
  • Service accounts need the datasphere.community-projects.developer role in the project; or else the service account must reside in the folder specified when creating the alias.
Yandex DataSphere interface
gRPC API
REST API

The type of a request to an alias depends on your node. You can send a test request in the interface if you expect the response to contain simple data, such as numbers or string variables.

  1. Select the project in your community or on the DataSphere home page in the Recent projects tab.

  2. Under Project resources, select Alias.
  3. Select the alias to send the request to.
  4. Go to the Request tab.
  5. Under Create test request:
    • In the Method field, select the request type.
    • In the Input field, enter the request input variables in {"a":2,"b":3} format and click Execute.
  6. View the request processing results under Response.

Note

The cURL section contains examples of requests to an alias for cURL and gRPCurl.

You can use gRPCurl to make gRPC calls.

grpcurl \
   --header "x-node-alias: datasphere.user.<alias_name>" \
   --header "Authorization: Bearer <IAM_token>" \
   --header "x-folder-id: <folder_ID>" \
   --data '<input_variables>' \
   node-api.datasphere.yandexcloud.net:443

Where:

  • <alias_name>: Alias name.
  • <IAM_token>: IAM token used for authentication.
  • <folder_ID>: ID of the folder where the project and the alias were created.
  • <input_variables>: Object in {"a":2,"b":3} format where keys match input variables.

The successful response will return an object:

{
   "output": {
      <output_variables>
   }
}

You can use cURL to send REST requests.

curl \
   --header "x-node-alias: datasphere.user.<alias_name>" \
   --header "Authorization: Bearer <IAM_token>" \
   --header "x-folder-id: <folder_ID>" \
   --request <request_type> \
   --data '<input_variables>' \
   https://node-api.datasphere.yandexcloud.net/

Where:

  • <alias_name>: Alias name.
  • <IAM_token>: IAM token used for authentication.
  • <folder_ID>: ID of the folder where the project and the alias were created.
  • <request_type>: Type of HTTP request.
  • <input_variables>: Object in {"a":2,"b":3} format where keys match input variables.

The response returns a JSON object with output variables.

Was the article helpful?

Previous
Deleting an alias
Next
Authentication in DataSphere Jobs
© 2026 Direct Cursus Technology L.L.C.