---
title: "Get Deployment Init Config"
method: GET
path: "/v2/deployments/{deployment_id}/init"
tags: ["Deployments"]
---

# Get Deployment Init Config

`GET /v2/deployments/{deployment_id}/init`

Public endpoint called when a widget or embed mounts. Returns customization, limits, captcha settings, and availability.

Does **not** return a PAL identifier - the widget/embed runtime never reads it from `/init`.

No API key required. Origin and browser-context checks apply for non-preview callers.

## Path parameters

- `deployment_id` string, required

## Response `200`

Init configuration

- DeploymentInitConfig — Configuration returned to widget, embed, and landing-page clients on init.
  - `deployment_id` string
  - `channel` 'widget' | 'embed' | 'landing-page'
  - `customization` object — Full customization tree including channel-specific blocks (`widget`, `landing_page`) and shared screens (`preview`, `haircheck`, `after_call`).
  - `has_password` boolean
  - `replica_thumbnail_video_url` string, nullable — **Removed.** Use `thumbnail_video_url` and `thumbnail_image_url` instead.
  - `thumbnail_video_url` string, nullable — URL for the face preview video thumbnail.
  - `thumbnail_image_url` string, nullable — URL for the face preview image thumbnail.
  - `show_tavus_branding` boolean
  - `limits` object
    - `max_call_duration` integer, nullable
    - `daily_call_limit_per_user` integer, nullable
  - `captcha` object, nullable — Present when Turnstile is enabled.
    - `provider` string
    - `site_key` string
    - `challenge_path` string
    - `action` string
  - `is_available` boolean
  - `unavailable_reason` string — Set when `is_available` is false, e.g. `daily_limit` or `total_limit`.

## Other responses

- `404` — Deployment not found or inactive

---

[API](https://skmtc.dev/tavus/apis/tavus-developer-api-collection.md) · [All operations](https://skmtc.dev/tavus/apis/tavus-developer-api-collection/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tavus/tavus-developer-api-collection/revisions/c878e2f6508d/schema)
