API test

Server-side verify endpoint — get a session token by verifying your face, then call the API.

POST /manav.id/api/v1/verify
Endpoint reference
Request
POST https://unmeta.net/manav.id/api/v1/verify/
Content-Type: application/json

{ "token": "<24-hex session token>" }

Success response
{
  "valid":     true,
  "principal": "manav:human:<keyHex>",
  "how":       "enrolled" | "glance" | "place",
  "issuedAt":  1718000000000,
  "expiresAt": 1718000300000  // 5 min window
}

curl
curl -X POST https://unmeta.net/manav.id/api/v1/verify/ \
  -H "Content-Type: application/json" \
  -d '{"token":"<your-token>"}'