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

ScenarioAction
Sending payment to merchantAlways verify
Sharing user dataAlways verify
Calling unknown APIAlways verify
Trusted internal serviceUse allowlist

Ready to get verified? Email hello@displace.agency

Agent format: /developers.md