Toolbench API

Build on your shop's data.

One personal token. Call /api/v1 from your own scripts, or paste the same token into ChatGPT or Claude.

or

Start here

Pick a starting point.

Eight short guides. The quickstart gets you a working response in about two minutes.

The surface

What you can reach.

Every endpoint on REST v1, grouped. Each one has a live console on its reference page.

Two doors

Enable once. Use it either way.

Settings → API and Settings → ChatGPT & Claude issue the same tb_cus_ token. Rotate once and both disconnect.

Call it yourself

A plain REST API over HTTPS. Bearer header, JSON in, JSON out, limit paging. No SDK required.

request
curl https://app.toolbench.com/api/v1/inbox?filter=callbacks \
  -H "Authorization: Bearer tb_cus_…"
Browse the reference

Hand it to an agent

Point ChatGPT or Claude at the MCP endpoint with the same token. Ask in plain language: what came in today, who hasn't been called back.

mcp config
{
  "mcpServers": {
    "toolbench": {
      "url": "https://app.toolbench.com/mcp",
      "headers": {
        "Authorization": "Bearer tb_cus_…"
      }
    }
  }
}
Connect an agent

Your first call

Prove the token works.

terminal

Make the call right here

Paste your token and hit send. GET /me is read-only and changes nothing — it just proves the token works and tells you what's live on your shop.

Your token

Held for this browser tab only. Closing the tab forgets it.

https://app.toolbench.com/api/v1/meNo token — send anyway to see 401
cURL
curl -X GET "https://app.toolbench.com/api/v1/me" \
  -H "Authorization: Bearer tb_cus_…"