---
title: Provisioning
url: https://docs.vultr.com/products/compute/serverless-inference/provisioning
description: A process that prepares and configures a server or service for use after initial deployment.
publish_date: 2024-09-23T20:20:46.499407Z
last_updated: 2026-05-26T19:09:55.964750Z
---

# How to Provision Vultr Serverless Inference

Vultr Serverless Inference is an efficient AI model hosting service that provides seamless scalability and reduced operational complexity for Generative AI applications. With reliable performance across six continents, Vultr ensures minimal latency for AI models while meeting stringent security and data compliance requirements.

Follow this guide to provision a Vultr Serverless Inference subscription using the Vultr Console, API, or CLI.

=== "Vultr Console"

    1. Navigate to **Products**, click **Serverless**, and then click **Inference**.

    1. Click **Add Serverless Inference**.

    1. Provide a **Label**, acknowledge the list of supported models and the charges note, and click **Add Serverless Inference**.

=== "Vultr API"

    1. Send a `POST` request to the [**Create Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/create-inference) to create a Serverless Inference subscription.

        ```console
        $ curl "https://api.vultr.com/v2/inference" \
            -X POST \
            -H "Authorization: Bearer ${VULTR_API_KEY}" \
            -H "Content-Type: application/json" \
            --data '{
                "label" : "example-inference"
            }'
        ```

    1. Send a `GET` request to the [**List Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/list-inference) to list all the available Serverless Inference subscriptions.

        ```console
        $ curl "https://api.vultr.com/v2/inference" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```

=== "Vultr CLI"

    1. Create a Serverless Inference subscription.

        ```console
        $ vultr-cli inference create --label example-inference
        ```

    1. List all the available Serverless Inference subscriptions available.

        ```console
        $ vultr-cli inference list
        ```
