> ## Documentation Index
> Fetch the complete documentation index at: https://novita.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# How to subscribe to Dedicated Endpoints?

**Generally, subscribing to **Dedicated Endpoints** involves the following steps.**

* Applying for **Dedicated Endpoints** access;
* Starting a **Dedicated Endpoints** subscription;
* Waiting for the **Dedicated Endpoints** to be `Actived`.

## 1. Applying for Dedicated Endpoints access.

<Tip>Please skip this step if you already have access.</Tip>

Go to the [Dedicated Endpoint Pricing Page](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints).

Choose the plan you want to subscribe to, click **"Contact Sales"**, and fill out the application form. After the Novita AI team reviews your request, you will receive a notification from us confirming that your request has been approved.

## 2. Starting a Dedicated Endpoints subscription.

Once the request is approved, you can subscribe the **Dedicated Endpoints** on the [Pricing Page](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints).

<Tip>
  * You need to add a `Payment Method` if you haven't already done so.
  * Don't forget to input the `Coupon Code` if you have one.
</Tip>

The **Dedicated Endpoints** will be created after the payment is completed.

## 3. Waiting Dedicated Endpoints to be `Actived`.

Once you've subscribed the **Dedicated Endpoints**, they will enter the `Deploying` status, and you can access them from the [Dedicated Endpoints Setting Page](https://novita.ai/models-console/dedicated-endpoints).

Upon activation of the **Dedicated Endpoints**, you'll receive an email notification confirming that the service is now `Actived` and ready to use.

The billing cycle for **Dedicated Endpoints** is monthly and begins immediately upon the service entering the `Actived` status. And the next monthly billing will be automatically deducted from your credit account.

## 4. Make a request with Dedicated Endpoints resources.

For **Dedicated Endpoints**, we have added a request body parameter `extra.enterprise_plan` to allow you to enable the **Dedicated Endpoints**. Please refer to the code below.

```bash theme={"system"}
curl --location 'https://api.novita.ai/v3/async/txt2img' \
--header 'Authorization: Bearer {{API Key}}' \
--header 'Content-Type: application/json' \
--data '{
  "extra": {
    "response_image_type": "jpeg",
    "enterprise_plan": {
      "enabled": true
    }
  },
  "request": {
    "model_name": "sdxlUnstableDiffusers_v11_216694.safetensors",
    "prompt": "Luxury suite design, Spacious suite area, Luxuriously plush large bed, Refined office desk, Carefully selected furniture for the luxurious suite, High-end and opulent decor, Private office and lounge area, Comfortably luxurious office chair, Amenities for luxury travelers, Premium bedding and linens, Uniquely designed lighting fixtures, Luxurious suite curtain design, Private work corner, Luxurious amenities, Lavish lounge area, Sophisticated indoor plant, decorations, Exquisite luxury design, Exclusive services for the luxury suite, Luxury color scheme. Exclusive furniture for the luxury suite, a bedroom with a large bed and a desk",
    "negative_prompt": "(badhandv4:1.2),(worst quality:2),(low quality:2),(normal quality:2),lowres,bad anatomy,bad hands,((monochrome)),((grayscale)) watermark,moles, easynegative ng_deepnegative_v1_75t, (oversized head:2), (big head:2), (deformed face:1.5),( blurry face:2), bad eyes, irregular eyes, asymmetric eyes, ugly, teeth, (navel:0.9), artefact, jpg artefact, blurry face, blurry, blurred, pixelated, bad eyes, crossed eyes, blurry eyes",
    "width": 512,
    "height": 512,
    "image_num": 1,
    "steps": 20,
    "seed": 123,
    "clip_skip": 1,
    "guidance_scale": 7.5,
    "sampler_name": "Euler a"
  }
}'
```

<Tip>If you encounter any questions, [please reach out to us on Discord](https://discord.gg/YyPRAzwp7P).</Tip>
