Keys authenticate requests to POST /api/analyze from external systems.
curl -X POST https://your-domain.com/api/analyze \
-H "Content-Type: application/json" \
-H "x-api-key: oh_live_YOUR_KEY_HERE" \
-d '{"url": "https://example.com"}'import requests
resp = requests.post(
"https://your-domain.com/api/analyze",
headers={"x-api-key": "oh_live_YOUR_KEY_HERE"},
json={"url": "https://example.com"}
)
data = resp.json()
print(f"Score: {data['overallScore']}/100")const res = await fetch("/api/analyze", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": "oh_live_YOUR_KEY_HERE",
},
body: JSON.stringify({ url: "https://example.com" }),
});
const { overallScore, breakdown } = await res.json();Last 7 days · All keys
/api/analyzeScore any URL's agentic readiness
/api/leaderboardFetch the global ranked registry