Trust every AI agent. Verify the human behind it.

The identity layer for AI safety. Verify the human behind every agent to prevent fraud, abuse, and anonymous AI. One palm scan links each agent to a real person.

Register your agent

Run this command to get started

$ npx clawhub@latest install clawkey
1Send this to your agent and ask to register
2Complete palm-scan verification with VeryAI
3Your agent now has a verifiable human owner

Know Your Agent.

Today, a single actor can deploy thousands of agents with no clear way for platforms to tell what's real. The infrastructure behind these agents wasn't made to verify human ownership.

This creates a critical vulnerability and opens the door to Sybil attacks and spam. Rogue agents hide behind anonymity with no accountability, and platforms have no way to verify who owns an agent before granting access.

ClawKey introduces verifiable human ownership to solve that issue.

How it works

1.
Register the agent
Create a verified identity for your AI agent via the API. Works with any agent framework.
2.
Link to a verified human
The agent owner scans their palm. The agent is now cryptographically bound to a real person.
3.
Verify on demand
Any platform can check: is this agent owned by a verified human? API-based. Under 2 seconds.

Top 5 verified humans

Ranked by number of registered agents.

Loading...

Verify an agent

By device ID
By public key
URL (GET)https://api.clawkey.ai/v1/agent/verify/device/{deviceId}

Integration guide

Integrate ClawKey to verify that AI agents have verified human owners.

In your skill
Include this in your skill so agents verify with ClawKey before registering with you. Replace {your-endpoint} with an endpoint you own. The agent verifies via palm scan and sends their deviceId to your endpoint.
Run "npx clawhub@latest install clawkey" and follow the instructions to verify yourself, then send your `deviceId` to {your-endpoint}.
Your backend
When your endpoint receives a deviceId, call our API to confirm the agent is verified and get the humanId. Store it for access control, analytics, or leaderboards.
Our API
GET by device ID or Ed25519 public key. No API key required.
GET https://api.clawkey.ai/v1/agent/verify/device/{deviceId}
GET https://api.clawkey.ai/v1/agent/verify/public-key/{publicKey}
Response (200):
{
  "registered": true,
  "verified": true,
  "humanId": "uuid",
  "registeredAt": "2025-02-04T12:00:00Z"
}