Skip to main content
Serverless AI lets you deploy and manage endpoints without handling infrastructure yourself. This quickstart shows how to validate basic endpoint functionality with minimal setup. In the web console, Quick start Serverless endpoint deploys a ready-made example with preconfigured settings.

Prerequisites

  • Make sure you are in a group that has the admin role within your tenant; for example, the default admins group. You can check this in the Administration → IAM section of the web console.
  • In the Quota section of the web console, check the following quotas:
    • Number of virtual machines (VMs) under Compute: make sure that at least one VM is available.
    • Total number of allocations under Virtual Private Cloud: make sure that at least one allocation is available.
    If necessary, increase the quotas.

Steps

Create an endpoint

  1. In the sidebar, go to https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/sidebar/ai-services.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=ab4ff229f7690c99deb1dc52d3daf987 AI Services → Endpoints.
  2. Click Quick start Serverless endpoint. The flow uses a preconfigured container image and default settings.
  3. Click Create endpoint.
Wait for the endpoint to be ready. It takes approximately 30 seconds.

Test the endpoint

  1. Open https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/sidebar/ai-services.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=ab4ff229f7690c99deb1dc52d3daf987 AI Services → Endpoints.
  2. Click the endpoint name to open its details. In the Network section, copy the public IP address.
  3. In a terminal, send a request to the endpoint:
    curl -v http://<public_IP_address>
    
In the command, specify the public IP address that you copied earlier.The response should have HTTP status 200 OK. The body is the default nginx welcome page, which confirms that the endpoint is serving traffic.

View logs

  1. In the sidebar, go to https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/sidebar/ai-services.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=ab4ff229f7690c99deb1dc52d3daf987 AI Services → Endpoints.
  2. In the endpoint list, next to the endpoint, click View logs. Alternatively, click https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/button-vellipsis.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e80b8e57c43bfd117679262e6a1334ad → View logs.

Delete the endpoint

If you no longer need the endpoint, delete it. Once you delete the endpoint, you will not be charged for it.
  1. In the sidebar, go to https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/sidebar/ai-services.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=ab4ff229f7690c99deb1dc52d3daf987 AI Services → Endpoints.
  2. In the endpoint list, find the endpoint and click https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/button-vellipsis.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e80b8e57c43bfd117679262e6a1334ad → Delete.
  3. Confirm the endpoint deletion.

Expected results

  • A request without a token in the web console returns 200 OK.
  • A request without a token in the CLI returns 401 Unauthorized or 403 Forbidden.
  • An endpoint can be deleted successfully.

See also