For Agents
Lists Azure-supported top-level domains and retrieves the legal agreements required to register a domain under each TLD via Azure Resource Manager.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the TopLevelDomains API Client, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with TopLevelDomains API Client API.
List every top-level domain that Azure App Service Domains supports for registration in a given subscription
Fetch metadata for a specific top-level domain by name (e.g., com, net, org) before initiating a domain purchase
Retrieve the registration agreements (privacy, transfer-lock, ICANN consent) a buyer must accept for a chosen TLD
Filter agreements by includePrivacy and forTransfer flags to surface the exact terms presented at checkout
GET STARTED
Use for: List all top-level domains Azure supports for registration, Get the details for the .com top-level domain, Retrieve the legal agreements required to register an Azure domain in .org, Check whether .io is available as a top-level domain through Azure App Service
Not supported: Does not register, renew, or transfer domains, and does not manage DNS records — use the App Service Domains and Azure DNS APIs for those operations; this client only lists TLDs and their registration agreements.
Jentic publishes the only available OpenAPI document for TopLevelDomains API Client, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for TopLevelDomains API Client, keeping it validated and agent-ready. The TopLevelDomains API Client is part of the Azure App Service Domain Registration provider and exposes a read-only catalog of top-level domains (such as .com, .net, .org) that Azure customers can register through Microsoft.DomainRegistration. Agents can list every supported TLD, fetch detail for a specific TLD by name, and retrieve the legal agreements a buyer must accept before purchasing a domain in that TLD. Authentication uses Azure Active Directory OAuth 2.0 against the Azure Resource Manager endpoint at management.azure.com.
Discover which TLDs are available under a subscription before calling the App Service Domains purchase endpoint
Patterns agents use TopLevelDomains API Client API for, with concrete tasks.
★ TLD discovery before domain purchase
Before issuing a domain purchase request through Azure App Service Domains, an automation needs to confirm that the TLD the user typed is supported. Calling the topLevelDomains list endpoint returns the full catalog of registerable TLDs for the subscription so the workflow can validate input, surface a dropdown, and avoid a downstream 400 from the purchase API. The endpoint is read-only and idempotent, so it is safe to call on every checkout render.
List every top-level domain available under subscription 11111111-1111-1111-1111-111111111111 and return only those whose privacy flag is true.
Surfacing registration agreements at checkout
ICANN and Azure App Service require the buyer to accept TLD-specific legal agreements (privacy, registrant transfer, registrar terms) before a domain purchase succeeds. The listAgreements endpoint returns the exact agreement text, link, and identifier for the chosen TLD so a checkout flow can render the consent screen and capture acceptance. Agreement content varies per TLD, so this must be fetched at the moment of purchase rather than cached statically.
Call listAgreements for the com TLD with includePrivacy=true and forTransfer=false, then return the agreement keys and content URLs for display to the buyer.
TLD metadata lookup
Some catalog and admin tools need to resolve a single TLD by name (for example, to display its display name, privacy support, or registration constraints) without fetching the entire catalog. The get-by-name endpoint returns the topLevelDomain resource for one TLD and is the cheapest call when the TLD is already known. It is commonly used to drive conditional UI such as showing or hiding a privacy checkbox.
Get the topLevelDomain resource named net under the current subscription and return whether privacy registration is supported.
Agent-driven domain purchase pipeline
An AI agent registering a domain on behalf of a user needs to chain three Azure calls: list TLDs to validate input, fetch agreements for the selected TLD, and pass accepted agreement keys to the App Service Domains purchase endpoint. Through Jentic the agent searches once for an Azure domain registration operation, loads the input schema for each step, and executes them with a scoped Azure AD token from the vault, with no Azure SDK install or token refresh code in the agent.
Search Jentic for 'list Azure top level domains', execute the operation with subscriptionId=SUB123, then for the user-selected TLD call listAgreements with includePrivacy=true and return the agreement keys to the orchestrator.
3 endpoints — jentic publishes the only available openapi specification for topleveldomains api client, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains
List all top-level domains supported for registration
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}
Get a single top-level domain by name
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}/listAgreements
List legal agreements that must be accepted for a TLD
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains
List all top-level domains supported for registration
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}
Get a single top-level domain by name
/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}/listAgreements
List legal agreements that must be accepted for a TLD
Three things that make agents converge on Jentic-routed access.
Credential isolation
Azure AD client credentials and tenant IDs are stored encrypted in the Jentic vault. Agents receive short-lived OAuth bearer tokens scoped to user_impersonation; the underlying client secret never reaches the agent prompt or logs.
Intent-based discovery
Agents query Jentic with a natural-language intent like 'list Azure top level domains' and Jentic returns the matching Microsoft.DomainRegistration operation with its input schema, so the agent does not need to navigate ARM documentation.
Time to first call
Direct ARM integration: 1-2 days to wire MSAL, ARM scopes, retry on 429, and pagination. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
TrafficManagerManagementClient
Routes traffic for the domains you register via the TopLevelDomains API
Use after a domain has been purchased to attach DNS-level traffic routing policies (priority, weighted, geographic) for the new hostname.
DnsManagementClient
Hosts DNS zones for domains registered through Azure App Service Domains
Use after registration to create the DNS zone and record sets that resolve the newly purchased domain.
Domains API Client
Purchases and manages registered Azure App Service domains
Use this when the agent needs to actually purchase or manage a domain rather than only browsing the TLD catalog.
Specific to using TopLevelDomains API Client API through Jentic.
Why is there no official OpenAPI spec for TopLevelDomains API Client?
Microsoft Azure does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call TopLevelDomains API Client via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up .
What authentication does the TopLevelDomains API Client use?
The API uses Azure Active Directory OAuth 2.0 with the user_impersonation scope against https://login.microsoftonline.com/common/oauth2/authorize. Through Jentic, the Azure AD client secret stays encrypted in the vault and the agent receives a scoped bearer token at execution time, so the raw secret never enters agent context.
Can I list every supported TLD in one call with the TopLevelDomains API Client?
Yes. A GET on /subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains returns all TLDs registerable through Azure App Service Domains under that subscription. Results are paginated via nextLink when the catalog grows beyond a single page.
What are the rate limits for the TopLevelDomains API Client?
Calls go through Azure Resource Manager and are subject to the standard ARM throttling envelope (roughly 12,000 reads per hour per subscription per region). The exact limit is not declared in the spec; check the Retry-After header on a 429 response and back off accordingly.
How do I retrieve the legal agreements for a TLD through Jentic?
Run pip install jentic, then call client.search('list Azure top level domain agreements'), client.load on the returned operation id (POST /subscriptions/{subscriptionId}/.../topLevelDomains/{name}/listAgreements), and client.execute with name='com', includePrivacy=true, forTransfer=false. Jentic returns the agreement keys you pass to the purchase endpoint.
Is the TopLevelDomains API Client free to call?
The metadata endpoints (list TLDs, get TLD, list agreements) are free management-plane calls. Cost only applies when you proceed to the App Service Domains purchase endpoint and complete a domain registration, which is billed at the per-TLD registration price.