Skip to content

Getting Started

Base URL

All API requests go to:

https://api.tenreply.com/api

The API uses JSON for request and response bodies (Content-Type: application/json).

Enable Developer Mode

Developer access is opt-in per workspace:

  1. Log into your Tenreply workspace.
  2. Go to Settings → Features.
  3. Toggle Developer Mode on.
  4. A new Developer tab appears in Settings — open it to create your first API key.

Your first request

Once you have an API key, test it:

Terminal window
curl https://api.tenreply.com/api/zapier/me \
-H "Authorization: Bearer trl_live_your_key_here"

Expected response:

{ "businessId": "your-business-id", "ok": true }

Next steps