GET /verify/status
Read-only check on a verification session's state. Does not consume the session or require authentication — the session token itself is the capability. Useful for confirming a session is still valid before sending a user to verify_url.
Request
GET /verify/status?session=<token>| Query param | Required | Description |
|---|---|---|
session | Yes | The session value returned by /verify/init. |
Response — 200 OK
json
{ "valid": true }Errors
| Status | Cause |
|---|---|
400 | session query param missing |
404 | Session not found or expired |
409 | Session already used |
410 | Session expired |
See Errors for the full response shape.