Instance management endpoints allow you to view and configure your ZITADEL instance, including managing domains and viewing instance information.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/zitadel/zitadel/llms.txt
Use this file to discover all available pages before exploring further.
Get My Instance
Deprecated: Use Instance Service v2 GetInstance instead. Returns details about the current instance such as name, version, and domains.HTTP Request
Permissions
Requiresiam.read permission.
Response
Information about the instance.
Unique identifier of the instance.
When the instance was created.
When the instance was last modified.
Current sequence number.
Display name of the instance.
ZITADEL version running.
Example Request
Example Response
List Instance Domains
Deprecated: Use Instance Service v2 GetInstance instead. Returns a list of domains configured for this ZITADEL instance.HTTP Request
Permissions
Requiresiam.read permission.
Response
Example Request
List Trusted Domains
Deprecated: Use Instance Service v2 ListTrustedDomains instead. Returns domains that are trusted for use as public hosts.HTTP Request
Permissions
Requiresiam.read permission.
Add Trusted Domain
Deprecated: Use Instance Service v2 AddTrustedDomain instead. Adds a domain to the list of trusted domains.HTTP Request
Permissions
Requiresiam.write permission.
Request Body
The domain name to add to the trusted list.
Example Request
Remove Trusted Domain
Deprecated: Use Instance Service v2 RemoveTrustedDomain instead. Removes a domain from the list of trusted domains.HTTP Request
Permissions
Requiresiam.write permission.
Path Parameters
The domain name to remove.
Example Request
Health Check
Checks if the ZITADEL system API is alive.HTTP Request
No Authentication Required
Response
Returns 200 as soon as ZITADEL is running.Example Request
Notes
- Instance domains are the URLs where ZITADEL is accessible
- Trusted domains can be used as public hosts in your applications
- The primary domain is used for default redirects and email links
- Use the v2 Instance Service API for new implementations