Documentation

TELLR is a hybrid Web4 agent platform to build and run agents. This page summarizes what’s available on the web app: Agent Hub, demo Terminal, and in-memory APIs for agents and trading.

QUICKSTART
Get started
$ npm i -g @tellr/cli

# auth + create an agent workspace
$ tellr login

# create a new Web4 agent
$ tellr agent init

# run locally with tools + memory
$ tellr agent dev

# deploy + get endpoint + api key
$ tellr deploy
NAVIGATION
Main pages
  • Landing — platform overview and branding
  • Agent Hub — create and manage agents
  • API — demo endpoints list
  • Terminal — simple demo command UI
API DEMO
Available endpoints
Example: quote
POST /api/trade/quote
Content-Type: application/json
{
  "chain": "base",
  "fromToken": "ETH",
  "toToken": "USDC",
  "amountIn": 1
}
Example: create order
POST /api/orders
Content-Type: application/json
{
  "agentId": "agent_xxx",
  "type": "limit",
  "chain": "base",
  "action": "buy",
  "baseToken": "ETH",
  "quoteToken": "USDC",
  "condition": "lte",
  "targetPrice": 3000,
  "amount": 0.1
}
Storage is in-memory for now; data resets on server restart.
HOMEAGENT HUBAPITERMINAL
SOCIAL
XMediumTelegramGitHub