Integrate D3 domain intelligence into your own applications or AI workflows. Use the REST API v1 for direct programmatic access, or the MCP server for AI assistant integration.
D3 is available as an MCP (Model Context Protocol) server for Claude Code and Claude Desktop. Once connected, you can ask Claude™ to run domain scans, check brand availability, and retrieve D3 Certified Reports — directly in conversation. Claude™ and Claude Code are trademarks of Anthropic, PBC.
// ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"d3": {
"url": "https://api.domain-due-diligence.com
/api/mcp/sse",
"headers": {
"Authorization": "Bearer d3_live_..."
}
}
}
}https://api.domain-due-diligence.com/api/mcp/sseAuthorization: Bearer d3_live_...MCP is an open standard. The D3 MCP server works in every platform that supports MCP — use the same server URL and API key across all tools below.
https://api.domain-due-diligence.com/api/mcp/sseAuthorization: Bearer d3_live_...Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"d3": {
"url": "https://api.domain-due-diligence.com
/api/mcp/sse",
"headers": {
"Authorization": "Bearer d3_live_..."
}
}
}
}Add to .vscode/mcp.json in your project:
{
"servers": {
"d3": {
"type": "sse",
"url": "https://api.domain-due-diligence.com
/api/mcp/sse",
"headers": {
"Authorization": "Bearer d3_live_..."
}
}
}
}https://api.domain-due-diligence.com/api/mcp/sseAdd to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"d3": {
"serverUrl": "https://api.domain-due-diligence.com
/api/mcp/sse",
"headers": {
"Authorization": "Bearer d3_live_..."
}
}
}
}Add to ~/.gemini/settings.json:
{
"mcpServers": {
"d3": {
"httpUrl": "https://api.domain-due-diligence.com
/api/mcp/sse",
"headers": {
"Authorization": "Bearer d3_live_..."
}
}
}
}https://api.domain-due-diligence.com/api/mcp/sse · Auth header: Authorization: Bearer d3_live_...# 1. Create an API key in Settings → API & MCP
# 2. Test in sandbox — all calls return mock data, no credits used
# 3. Activate production per section (REST or MCP) once checklist is complete
# REST API example
curl -H "Authorization: Bearer d3_live_..." \
https://api.domain-due-diligence.com/api/v1/products
# MCP (Claude Desktop config)
{
"mcpServers": {
"d3": {
"url": "https://api.domain-due-diligence.com/api/mcp/sse",
"headers": { "Authorization": "Bearer d3_live_..." }
}
}
}