APTOGON
ManifestDevelopersDonateVerify

डेवलपर्स के लिए

Add human verification to your app with a drop-in snippet. Create a key in the console, embed the verifier, and confirm each session server-side with your secret key.

POST https://homosapience.org/api/embed/verify

त्वरित शुरुआत

न्यूनतम एकीकरण — 3 चरण

1Get your API keys
// In the APTOGON console (/console): create a key, then verify your domain.
// pk_live_…  — publishable key, safe to ship in the browser
// sk_live_…  — secret key, server-side only (shown once at creation)
2Drop in the verifier (browser)
<!-- Declarative: renders a "Verify you're human" button -->
<script src="https://homosapience.org/embed/v1/aptogon.js"
        data-aptogon-key="pk_live_…"></script>
<div data-aptogon-verify data-on-success="onHuman"></div>

<script>
  // …or call it programmatically (opens the APTOGON signer popup):
  async function verify() {
    const { token, trust_band } = await window.Aptogon.verify({
      publishableKey: 'pk_live_…',
    })
    // send `token` to your backend to confirm it
    await fetch('/my/confirm', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({ token }),
    })
  }
</script>
3Confirm server-side (secret key)
// On YOUR server — never expose sk_live_ to the browser
const res = await fetch('https://homosapience.org/api/embed/verify', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer sk_live_…',
  },
  body: JSON.stringify({ token }),
})
const { human, did_hash, trust_band } = await res.json()
if (human) {
  // verified, unique human — trust_band ∈ low | medium | community | high
  // did_hash is anonymous (no link to the user's real identity)
}

API संदर्भ

POST/api/embed/challenge

Start a verification — returns a one-time nonce for your publishable key + origin. aptogon.js calls this for you; you rarely call it directly.

Params: publishable_key · originReturns: nonce · expires_in
POST/api/embed/assert

The signer popup proves the user controls a verified DID and returns a short-lived token. Handled by aptogon.js inside the popup.

Params: publishable_key · nonce · did · signatureReturns: token · trust_band
POST/api/embed/verify

Server-to-server: redeem the token with your SECRET key to confirm a verified human. This is the billable call — never expose sk_live_ in the browser.

Params: Authorization: Bearer sk_live_… · tokenReturns: human · did_hash · trust_band · issued_at
GET/api/verify/status

Look up the verification status of a DID.

Params: did (query)Returns: is_human · valid_until · bond_count

विशेषताएं

🔐
Zero PII

कच्चे इशारे के निर्देशांक कभी ब्राउज़र नहीं छोड़ते। केवल सांख्यिकी सर्वर को जाती है।

🌐
W3C DID

did:key मानक के साथ संगत। किसी भी पहचान प्रणाली के साथ काम करता है।

⛓️
On-chain proof

Aptos पर Move कॉन्ट्रैक्ट। हमारे सर्वर के बिना सत्यापन — पूरी तरह विकेंद्रीकृत।

सुलभता

मोटर विकलांगता को ध्यान में रखता है। कंपन वाले लोग कभी ब्लॉक नहीं होते।

तेज़

माध्यिका 800ms। Gonka AI fallback के साथ — सेवा अनुपलब्ध होने पर भी काम करता है।

📋
Verifiable Credential

W3C VC फ़ॉर्मेट। Ed25519 के साथ हस्ताक्षरित। 30 दिनों में समाप्त, स्वचालित नवीनीकरण।

एकीकरण के लिए तैयार?

Create a key in the console to get started. Contact us for higher quotas or enterprise integration.