curl --request GET \
--url https://pria.praxislxp.com/api/user/stripe/checkout-result \
--header 'x-access-token: <api-key>'{
"success": true,
"plan": "Pro",
"credits": 500,
"amount": 5000,
"currency": "usd",
"accountName": "Personal",
"paymentStatus": "paid",
"mode": "payment"
}Get checkout session result
Retrieves details of a completed Stripe checkout session for displaying a purchase confirmation screen. Verifies the session belongs to the authenticated user.
curl --request GET \
--url https://pria.praxislxp.com/api/user/stripe/checkout-result \
--header 'x-access-token: <api-key>'{
"success": true,
"plan": "Pro",
"credits": 500,
"amount": 5000,
"currency": "usd",
"accountName": "Personal",
"paymentStatus": "paid",
"mode": "payment"
}Documentation Index
Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
JWT token passed in x-access-token header
Query Parameters
Stripe checkout session ID (from the success URL redirect)
Response
Checkout result retrieved successfully
true
Package display name (e.g., 'Silver', 'Pro')
"Pro"
Number of credits added to the account
500
Total amount charged in cents
5000
Three-letter ISO currency code
"usd"
Name of the account credited (institution name or 'Personal')
"Personal"
Stripe payment status
paid, unpaid, no_payment_required "paid"
Stripe checkout mode
payment, subscription "payment"
Was this page helpful?