Get domain
Domains
Get domain
Get detailed domain information
Retrieve complete details about a specific domain including configuration status and DNS records.
Response Includes
- Domain identification and status
- Nameservers to configure
- DNS records (SPF, DKIM, MX)
- Inbox capacity
Example Usage
import requests
domain_id = "550e8400-e29b-41d4-a716-446655440000"
response = requests.get(
f"https://api.coldsend.io/api/public/v1/domains/{domain_id}",
headers={"X-API-Key": "your-api-key"}
)
print(response.json())
GET
Get domain
Authorizations
API key with format cs_live_xxx
Path Parameters
Response
Domain retrieved successfully
Detailed domain response.
Domain ID
Domain name
Domain status
Whether added to Mailcow
Whether Cloudflare is verified
Maximum inboxes allowed
Current inbox count
Creation timestamp
Nameservers to use
DNS records to configure
Last update timestamp

