Start here
Quickstart
Issue a token and prove GET /me in about two minutes.
- 1
Turn the API on
Open Settings → API and enable it. Trial and Toolbench Core can both issue a token. Copy thetb_cus_value the moment it appears — it is shown once.Shown onceIf you lose it, rotate. Rotating invalidates the old token instantly, including in ChatGPT and Claude. - 2
Keep it out of your code
Put it in an environment variable, not a source file.export TB="https://app.toolbench.com/api/v1" export TB_TOKEN="tb_cus_your_token_here" - 3
Make the one-line check
GET /meis read-only and changes nothing. If it comes back with your identity and pulses, the token works.curl -s "$TB/me" -H "Authorization: Bearer $TB_TOKEN" - 4
Read who hasn't texted back
GET /inbox?filter=callbacksis missed-call texts with no reply.curl -s "$TB/inbox?filter=callbacks" \ -H "Authorization: Bearer $TB_TOKEN"