Validate a verification receipt JWT and return its decoded claims. Use this server-side to confirm that a verification token is authentic before granting access. No API key required — the token’s cryptographic signature is the proof of authenticity.
The JWT verification receipt from a completed verification (received via webhook, polling, or return URL)
Token validation result
Whether the token signature is valid and not expired
Human-readable reason if token is invalid (e.g., 'Token has expired', 'Invalid token')
When the token expired (only present for expired tokens)
Decoded JWT claims (present for valid tokens, partially present for expired tokens)