TethrTethrDEMOSign up free

Settings

Manage your hubs, API keys, and integrations

Demo mode

Hubs

Organize agents by team or project. Each hub can have its own API key.

Marketing

1 API key · Content, social, and outreach agents

Data & Analytics

1 API key · ETL pipelines, crawlers, and data processing

Sales

1 API key · Outbound, CRM, and invoicing agents

Operations

1 API key · Internal tools and process automation

Create API Key

Assign a key to a hub so agents auto-classify when they ping.

Your API Keys

Marketing Agents

Marketing

tth_live_x9••••••••••••••••••••

Last used: 3/20/2026

Data Pipeline

Data & Analytics

tth_live_a3••••••••••••••••••••

Last used: 3/20/2026

Sales Team

Sales

tth_live_q7••••••••••••••••••••

Last used: 3/20/2026

Ops & Internal

Operations

tth_live_m1••••••••••••••••••••

Last used: 3/20/2026

Integration Snippet

import { TethrAgent } from 'tethr-sdk'

const agent = new TethrAgent({
  apiKey: 'tth_live_x9••••••••••••',
  name: 'my-agent',
})

await agent.ping({
  status: 'running',
  step: 1,
  total: 10,
  message: 'Processing items...',
})

const { is_paused } = await agent.control()
if (is_paused) { /* gracefully stop */ }

Install: npm install tethr-sdk