Trust Before Authorization

The public directory of verified AI agent publishers. Look up any organization by DID, check compliance badges, and verify the humans behind the agents — before you authorize anything.

Look up any organization

Search by name, DID, or domain. Every lookup is public — no account required.

Acme AI Labs
did:web:acme-ai.com
Verified SOC 2 GDPR
Enterprise AI automation platform with code generation, data analysis, and workflow orchestration agents.
12 agents 8.4K grants/wk 4.8 rating
NovaMind Technologies
did:web:novamind.dev
Verified SOC 2 DPDP ISO 27001
Research-grade AI agents for scientific computing, literature review, and experimental design automation.
8 agents 3.2K grants/wk 4.9 rating
Helios Finance
did:web:helios.finance
Verified SOC 2 GDPR DPDP
Fintech AI agents for portfolio analysis, risk assessment, compliance reporting, and trade execution.
6 agents 1.8K grants/wk 4.7 rating
89
Verified Organizations
234
Registered Agents
1.2M
Grants per Week

How Verification Works

Four methods to prove you own your DID and meet compliance standards.

🌐

DNS TXT Record

Add a TXT record at _grantex.your-domain.com with the token we provide. We verify automatically in under 5 minutes.

Recommended
🔗

.well-known Endpoint

Serve a JSON document at /.well-known/grantex-verification on your domain. Ideal for organizations with restricted DNS access.

Automated
📜

SOC 2 Attestation

Upload your SOC 2 Type II report for automated compliance verification. Earns the SOC 2 badge alongside DID verification.

2 Business Days
👥

Manual Review

Request a manual review by the Grantex trust team. Best for organizations with unique structures or non-standard DIDs.

3-5 Business Days

Register in minutes

Three steps from unregistered to verified. Most organizations complete the process in under 10 minutes.

1

Register your DID

Enter your organization's Decentralized Identifier (did:web recommended), name, and contact information in the dashboard.

2

Verify domain ownership

Add a DNS TXT record or serve a .well-known endpoint. We check automatically and mark you as verified.

3

Earn compliance badges

Upload attestations for SOC 2, GDPR, DPDP, or ISO 27001. Badges appear on your public profile and in search results.

4

Embed your trust badge

Add the trust badge web component to your site. Shows real-time verification status, badges, and agent count.

Live Verification Status
🌐
DNS TXT — _grantex.acme-ai.com
📜
SOC 2 Type II — 2026-01-15
🏳
GDPR — DPO: dpo@acme-ai.com
🔑
Public Keys — 2 JWK entries
Fully Verified Verified 2026-02-10

Embeddable Trust Badge

Show developers your verified status with a single HTML tag. Updates in real time.

Acme AI Labs
Verified
12 agents · SOC 2 · GDPR

Add a single line to your HTML:

<!-- Grantex Trust Badge -->
<grantex-trust-badge
  did="did:web:acme-ai.com"
  theme="dark"
/>

<!-- Load the web component -->
<script src="https://cdn.grantex.dev/trust-badge.js"></script>

The badge auto-updates when your verification status or badge count changes. Supports light and dark themes.

Programmatic Access

Look up organizations and verify agents programmatically. The search endpoint is public — no API key required.

// Search the registry (no auth needed)
const res = await fetch(
  'https://api.grantex.dev/v1/registry/orgs?q=acme'
);
const { data, meta } = await res.json();

// Or use the SDK
import { Grantex } from '@grantex/sdk';
const gx = new Grantex();
const orgs = await gx.registry.search({
  q: 'acme',
  verified: true
});
# Search the registry (no auth needed)
import httpx

res = httpx.get(
    "https://api.grantex.dev/v1/registry/orgs",
    params={"q": "acme"}
)
orgs = res.json()["data"]

# Or use the SDK
from grantex import Grantex
gx = Grantex()
orgs = gx.registry.search(q="acme", verified=True)

Build Trust Into Your Agent Infrastructure

Register your organization, get verified, and let every developer in the ecosystem know your agents are legitimate — before a single grant is issued.