POST
/
create-agent
{
  "name": "TradingBot",
  "type": "Trading",
  "description": "Automated trading bot for BSC tokens",
  "triggers": [
    {
      "type": "price",
      "condition": "price_change",
      "parameters": {
        "threshold": "10%",
        "timeframe": "1h"
      }
    }
  ],
  "actions": [
    {
      "type": "swap",
      "parameters": {
        "maxSlippage": "1%",
        "gasSpeed": "fast"
      }
    }
  ]
}
{
  "id": 12345,
  "name": "TradingBot",
  "type": "Trading",
  "description": "Automated trading bot for BSC tokens",
  "triggers": [
    {
      "type": "price",
      "condition": "price_change",
      "parameters": {
        "threshold": "10%",
        "timeframe": "1h"
      }
    }
  ],
  "actions": [
    {
      "type": "swap",
      "parameters": {
        "maxSlippage": "1%",
        "gasSpeed": "fast"
      }
    }
  ]
}

Create a new Buildr AI agent that can automate DeFi operations based on your specifications. Each agent can be configured with specific triggers and actions to execute your desired trading strategies.

Body Parameters

name
string
required

The name of your agent

type
string
required

Type of agent. Can be one of: DeFi, NFT, Social, Trading

description
string

A detailed description of what the agent does

triggers
array

Conditions that activate the agent

{
  "type": "price | time | volume | onchain",
  "condition": "string",
  "parameters": {
    // Trigger-specific parameters
  }
}
actions
array

Actions the agent performs when triggered

{
  "type": "swap | transfer | deploy | monitor",
  "parameters": {
    // Action-specific parameters
  }
}

Response

id
integer

Unique identifier for the created agent

name
string

Name of the agent

type
string

Type of the agent

{
  "name": "TradingBot",
  "type": "Trading",
  "description": "Automated trading bot for BSC tokens",
  "triggers": [
    {
      "type": "price",
      "condition": "price_change",
      "parameters": {
        "threshold": "10%",
        "timeframe": "1h"
      }
    }
  ],
  "actions": [
    {
      "type": "swap",
      "parameters": {
        "maxSlippage": "1%",
        "gasSpeed": "fast"
      }
    }
  ]
}
{
  "id": 12345,
  "name": "TradingBot",
  "type": "Trading",
  "description": "Automated trading bot for BSC tokens",
  "triggers": [
    {
      "type": "price",
      "condition": "price_change",
      "parameters": {
        "threshold": "10%",
        "timeframe": "1h"
      }
    }
  ],
  "actions": [
    {
      "type": "swap",
      "parameters": {
        "maxSlippage": "1%",
        "gasSpeed": "fast"
      }
    }
  ]
}