GlemoDocs

Quickstart

Your first verification in under 5 minutes.

You'll provision a sandbox key, verify a sample credential and watch a revocation flip the verdict. No signup, no approval, nothing to install unless you want the SDK.

Get a test key

One request provisions a sandbox key plus two sample credentials — one valid, one revoked:

curl -X POST https://api-sandbox.glemo.io/sandbox/keys
{
  "apiKey": "glemo_test_…",
  "credentials": {
    "valid": "3f2a…",
    "revoked": "9c1b…"
  }
}

Keep the three values handy — that's everything you need.

Verify the valid credential

curl -X POST https://api-sandbox.glemo.io/verify \
  -H "Authorization: Bearer $GLEMO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"method": "byHash", "credentialId": "<credentials.valid>"}'

Expected response:

{ "status": "valid", "checks": [{ "name": "lookup", "ok": true }] }

Watch a revocation

Run the same call with credentials.revoked:

{ "status": "revoked", "checks": [{ "name": "status", "ok": false }] }

That's the whole loop — one key, one call, a cryptographic verdict. The revocation comes from a real W3C Status List, not a mock.

Getting a 429?

The sandbox provisioner is rate-limited (5 keys/hour per IP). Reuse the key you already have — it doesn't expire during your session.

Next steps

On this page

Quickstart