tools

Manage tools attached to agents.

List Tools

GET /api/agents/:agentId/tools

Create Tool

POST /api/agents/:agentId/tools
Content-Type: application/json

{
  "type": "dexscreener",
  "name": "DexScreener",
  "description": "Real-time DEX trading data",
  "configJson": { "chainIds": ["solana"] },
  "enabled": true
}

Response 201: The created tool.

Update Tool

Delete Tool

Config Fields by Type

Tool
Config Fields

dexscreener

chainIds, pairAddresses

polymarket

marketIds

coingecko

coinIds

custom

endpoint, method, headers, bodyTemplate, responseMapping

Was this helpful?