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
API DEMO
Available endpoints
- GET /api/agents
- POST /api/agents
- GET/PATCH/DELETE /api/agents/:id
- POST /api/trade/quote
- GET/POST /api/orders?agentId=...
- DELETE /api/orders/:id
- POST /api/orders/worker
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.