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

# Wie abonniert man Dedicated Endpoints?

**Im Allgemeinen umfasst das Abonnieren von **Dedicated Endpoints** die folgenden Schritte.**

* Zugriff auf **Dedicated Endpoints** beantragen;
* Ein **Dedicated Endpoints**-Abonnement starten;
* Warten, bis die **Dedicated Endpoints** `Actived` sind.

## 1. Zugriff auf Dedicated Endpoints beantragen.

<Tip>Bitte überspringen Sie diesen Schritt, wenn Sie bereits Zugriff haben.</Tip>

Gehen Sie zur [Dedicated Endpoint-Preisübersichtsseite](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints).

Wählen Sie den Tarif aus, den Sie abonnieren möchten, klicken Sie auf **"Contact Sales"** und füllen Sie das Antragsformular aus. Nachdem das Novita AI-Team Ihre Anfrage geprüft hat, erhalten Sie von uns eine Benachrichtigung, die bestätigt, dass Ihre Anfrage genehmigt wurde.

## 2. Ein Dedicated Endpoints-Abonnement starten.

Sobald die Anfrage genehmigt wurde, können Sie die **Dedicated Endpoints** auf der [Preisübersichtsseite](https://novita.ai/pricing?utm_source=getstarted#dedicated_endpoints) abonnieren.

<Tip>
  * Sie müssen eine `Payment Method` hinzufügen, falls Sie dies noch nicht getan haben.
  * Vergessen Sie nicht, die `Coupon Code` einzugeben, falls Sie eine haben.
</Tip>

Die **Dedicated Endpoints** werden erstellt, nachdem die Zahlung abgeschlossen wurde.

## 3. Warten, bis Dedicated Endpoints `Actived` sind.

Sobald Sie die **Dedicated Endpoints** abonniert haben, wechseln sie in den Status `Deploying`, und Sie können über die [Dedicated Endpoints-Einstellungsseite](https://novita.ai/models-console/dedicated-endpoints) darauf zugreifen.

Nach der Aktivierung der **Dedicated Endpoints** erhalten Sie eine E-Mail-Benachrichtigung, die bestätigt, dass der Dienst jetzt `Actived` und einsatzbereit ist.

Der Abrechnungszeitraum für **Dedicated Endpoints** ist monatlich und beginnt sofort, sobald der Dienst in den Status `Actived` wechselt. Die nächste monatliche Abrechnung wird automatisch von Ihrem Guthabenkonto abgezogen.

## 4. Eine Anfrage mit Dedicated Endpoints-Ressourcen stellen.

Für **Dedicated Endpoints** haben wir den Request-Body-Parameter `extra.enterprise_plan` hinzugefügt, damit Sie die **Dedicated Endpoints** aktivieren können. Bitte beachten Sie den folgenden Code.

```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>Wenn Sie Fragen haben, [kontaktieren Sie uns bitte auf Discord](https://discord.gg/YyPRAzwp7P).</Tip>
