Quick Start
Add trust verification to your AI agent in 3 lines. No SDK. No auth. Just HTTP.
The Simplest Integration
curl https://verified.md/verify/example.com
How It Works
1
Call the Verify Endpoint
Send a GET request to /verify/{domain} before any transaction.
2
Check the Response
If response.success && response.data.verified is true, the entity is verified.
3
Act on the Result
Verified = proceed with transaction. Not verified = flag for human review.
Response Format
{
"success": true,
"data": {
"domain": "example.com",
"verified": true,
"entity": {
"name": "Example Corp",
"id": "ent_example001",
"level": "verified"
}
}
}
When to Verify
| Scenario | Action |
|---|---|
| Sending payment to merchant | Always verify |
| Sharing user data | Always verify |
| Calling unknown API | Always verify |
| Trusted internal service | Use allowlist |
Ready to get verified? Email hello@displace.agency
Agent format: /developers.md