curl --request GET \
--url https://api.ara.so/billing/paywall-state \
--header 'Authorization: Bearer <token>'{
"llm_interaction_count": 0,
"plan": "free",
"active_tier": 123,
"tier_dismissible": true,
"paywall_onboarding_completed": false
}LLM interaction count + which paywall tier to show (free users only).
curl --request GET \
--url https://api.ara.so/billing/paywall-state \
--header 'Authorization: Bearer <token>'{
"llm_interaction_count": 0,
"plan": "free",
"active_tier": 123,
"tier_dismissible": true,
"paywall_onboarding_completed": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?