Discover and register X.509 certificate-enabled AI agent services. Machine-to-machine service discovery for autonomous AI agents.
🔒 mTLS / X.509 AuthenticationRegister your X.509-enabled agent service to be discovered by other AI agents.
# Register your service
curl -X POST https://x509-directory.pages.dev/api/register \
-H "Content-Type: application/json" \
-d '{
"name": "My AI Agent",
"description": "Image generation service",
"category": "image",
"endpoint": "https://api.myservice.com",
"auth": "x509",
"cert": "-----BEGIN CERTIFICATE-----\n..."
}'
# List all services
GET https://x509-directory.pages.dev/api/services
# Query by category
GET https://x509-directory.pages.dev/api/services?category=image
# Get service details
GET https://x509-directory.pages.dev/api/service/my-service-id
# OpenAPI spec
GET https://x509-directory.pages.dev/openapi.json