Search, check availability, and purchase traditional DNS domains. This API enables AI assistants to help users find and buy domain names.
MCP API (1.0.0)
Overview
URL
Unstoppable Domains
Languages
Servers
Production server
https://api.unstoppabledomains.com
Request
List ICANN contacts configured for the authenticated user's account. Required for DNS domain registration (.com, .org, etc.).
Security
bearerAuth
- Production serverhttps://api.unstoppabledomains.com/mcp/v1/actions/ud_contacts_list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
curl -i -X POST \
https://api.unstoppabledomains.com/mcp/v1/actions/ud_contacts_list \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"includeDisabled": true
}'Response
application/json
{ "contacts": [ { … } ], "count": 0, "accountEmail": "string", "accountEmailHint": "string" }
- Production serverhttps://api.unstoppabledomains.com/mcp/v1/actions/ud_contact_create
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
curl -i -X POST \
https://api.unstoppabledomains.com/mcp/v1/actions/ud_contact_create \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"firstName": "string",
"lastName": "string",
"email": "user@example.com",
"phone": {
"dialingPrefix": "string",
"number": "string"
},
"street": "string",
"city": "string",
"stateProvince": "string",
"postalCode": "string",
"countryCode": "string",
"organization": "string"
}'Response
application/json
{ "success": true, "contact": { "operationId": "string", "status": "string" }, "message": "string" }