Retrieve the full NDA / contract risk report after the user pays $9.
Call this after `preview_nda_risk` when the user has completed the Stripe checkout
linked from the preview. Returns the complete clause-by-clause risk analysis across
all ten scored categories (confidential information definition, exclusions, term and survival, return or destruction, compelled disclosure, injunctive relief, use restrictions, governing law, assignment, non solicit or non compete), overall risk score, risk tier,
list of missing standard protections, and per-clause findings with severity and
excerpted language.
Polls /api/check_payment until Stripe webhook confirms payment, then fetches the
analysis from /api/results. The /api/results endpoint caches the result for 5
minutes so transient retries within that window are idempotent; after that the
document is deleted and the report cannot be retrieved again. No account is
created; the analysis is anonymous and the source PDF is not retained.
Polling: 2s interval, 5 minute total cap (150 attempts).
Args:
session_token: The token returned by `preview_nda_risk`.
Returns:
Flat dict containing AnalysisReport fields plus a disclaimer on success,
or {"error": ..., "message": ..., "disclaimer": ...} on failure.
Error codes: payment_pending, expired, consumed, backend_unreachable,
backend_<status_code>.