Tool Discovery Pro — Self-serve help
This page explains how to start your Starter trial, retrieve your API token, and call the Pro API.
1) Start your free trial
- Go to /pro
- Click Start free trial for Starter.
- Complete Stripe checkout.
2) Find your token
After checkout, Stripe redirects you to a confirmation URL on tutuoai.com.
Confirmed URL format: /pro/confirmed?session_id=...
If you lost the browser tab, you can recover the link from your Stripe receipt email (it contains the same session_id).
3) Use your token (curl example)
Once you have a token, call the Pro API with an Authorization header.
# Replace TOKEN with the value shown on /pro/confirmed TOKEN="ttp1_..." # Who am I / what tier do I have? curl -s https://pro-api.tutuoai.com/pro/me \ -H "Authorization: Bearer $TOKEN" | jq # Fetch the Pro feed (drops) curl -s https://pro-api.tutuoai.com/tool-discovery-pro.json \ -H "Authorization: Bearer $TOKEN" | jq
Tip: if you don’t have jq, remove | jq.
Troubleshooting
- Missing session_id: the confirmed link must look like
/pro/confirmed?session_id=.... If the URL doesn’t include it, re-open the Stripe receipt email and use the confirmed link there. - Token not showing yet: wait ~10 seconds and refresh. Stripe can take a moment to finalize the session.
- Still stuck? Email legal@tutuoai.com with: (1) your
session_id, (2) the email you used in Stripe, and (3) approximate purchase time.