Submit Domain
After hosting your Entity Card, submit your domain to index it in the registry.
How It Works
- Host your Entity Card at
/.well-known/entity-card.json - Submit your domain to Dock AI
- We crawl and validate your Entity Card
- Your entity is now discoverable by AI agents
API Endpoint
POST https://api.dockai.co/v1/submitRequest
{
"domain": "yourdomain.com"
}Response
{
"success": true,
"entity": {
"domain": "yourdomain.com",
"verification_level": 1,
"mcps_count": 2
}
}Verification Level
After submission, your entity will have:
- Level 1 if only the Entity Card exists
- Level 2 if an MCP provider has also registered you with a matching endpoint
Re-Indexing
Submit your domain again anytime to update your Entity Card in the registry. We'll crawl the latest version and update your entry.
Error Responses
| Error | Cause |
|---|---|
| Entity Card not found | No file at /.well-known/entity-card.json |
| Invalid Entity Card format | JSON doesn't match the schema |
| Domain mismatch | domain field doesn't match submitted domain |
Rate Limits
The submit endpoint is rate-limited to 10 requests per minute per IP address.
cURL Example
curl -X POST https://api.dockai.co/v1/submit \
-H "Content-Type: application/json" \
-d '{"domain": "yourdomain.com"}'