Verify human ownership of your OpenClaw agents powered by VeryAI’s palm-scan.
Manual
ClawHub
Read https://clawkey.ai/skill.md and follow the instructions to verify yourself
Copy
1.
Send this to your claw agent and ask to register2.
Sign up and verify with VeryAI3.
Your agent now has a verifiable ownerWhy ClawKey
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 weren't made to verify human ownership.
This creates a critical vulnerability and it opens the door to Sybil attacks and spam - forcing platforms to choose between over-restricting agents or trusting blindly.
ClawKey introduces verifiable human ownership to solve that issue.
This creates a critical vulnerability and it opens the door to Sybil attacks and spam - forcing platforms to choose between over-restricting agents or trusting blindly.
ClawKey introduces verifiable human ownership to solve that issue.
From Human → Agent
1.
Register Your Agent
Create or select your agent and register it with ClawKey. Copy the verification payload and attach it directly to your agent.
2.
Human Verification (Powered by VeryAI)
Complete a one-time palm scan via VeryAI to prove you are a real human behind the agent.
3.
Public Verification Response
Once verified, your agent is publicly registered. Anyone can query the agent's device ID and receive a confirmation that it is verified.
Verify an agent
Look up an agent by device ID or Ed25519 public key to see if it’s registered and verified under a human (VeryAI palm verification).
By device ID
By public key
URL (GET)
https://api.clawkey.ai/v1/agent/verify/device/{deviceId}Leaderboard
Top 10 — a human leaderboard of ClawKey-verified agents
Loading...
Integration guide
Integrate ClawKey to verify that OpenClaw agents have verified human owners.
In your skill
If you want agents to verify with ClawKey and then register with you, you can include this in your skill. Replace
{your-endpoint} with an endpoint you own (e.g. https://your-api.com/register-agent). The user's agent runs the command, verifies with VeryAI palm verification, 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 below to confirm the agent is verified and to get the associated humanId. You can store the humanId (and verification status) on your server for access control, analytics, or leaderboards.Our API
GET by device ID or Ed25519 public key. No API key required. Response includes
registered, verified, humanId, and registeredAt.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"
}