> ## 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.

# Dedicated Endpoints のサブスクライブ方法

**一般的に、Dedicated Endpoints のサブスクライブには、次の手順が含まれます。**

* **Dedicated Endpoints** へのアクセスを申請する;
* **Dedicated Endpoints** のサブスクリプションを開始する;
* **Dedicated Endpoints** が `Actived` になるまで待つ。

## 1. Dedicated Endpoints へのアクセスを申請する。

<Tip>すでにアクセス権をお持ちの場合は、このステップをスキップしてください。</Tip>

[Dedicated Endpoint Pricing Page](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints) に移動します。

サブスクライブしたいプランを選択し、**"Contact Sales"** をクリックして申請フォームに入力します。Novita AI チームがリクエストを確認した後、リクエストが承認されたことを知らせる通知が届きます。

## 2. Dedicated Endpoints のサブスクリプションを開始する。

リクエストが承認されると、[Pricing Page](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints) で **Dedicated Endpoints** をサブスクライブできます。

<Tip>
  * まだ追加していない場合は、`Payment Method` を追加する必要があります。
  * お持ちの場合は、`Coupon Code` の入力を忘れないでください。
</Tip>

支払いが完了すると、**Dedicated Endpoints** が作成されます。

## 3. Dedicated Endpoints が `Actived` になるまで待つ。

**Dedicated Endpoints** をサブスクライブすると、`Deploying` ステータスになり、[Dedicated Endpoints Setting Page](https://novita.ai/models-console/dedicated-endpoints) からアクセスできます。

**Dedicated Endpoints** がアクティブ化されると、サービスが現在 `Actived` であり、利用可能であることを確認するメール通知が届きます。

**Dedicated Endpoints** の請求サイクルは月単位で、サービスが `Actived` ステータスになった時点ですぐに開始されます。また、次回の月額請求はクレジットアカウントから自動的に差し引かれます。

## 4. Dedicated Endpoints リソースでリクエストを行う。

**Dedicated Endpoints** では、**Dedicated Endpoints** を有効化できるように、リクエストボディパラメータ `extra.enterprise_plan` を追加しました。以下のコードを参照してください。

```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>ご不明な点がある場合は、[Discord でお問い合わせください](https://discord.gg/YyPRAzwp7P)。</Tip>
