GET
/
agent
/
{id}
curl -X GET 'https://api.buildr.bot/agent/12345' \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "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"
      }
    }
  ]
}

Retrieve detailed information about an existing Buildr AI agent by its ID. This endpoint returns the complete configuration of the agent, including its triggers and actions.

Path Parameters

id
integer
required

The unique identifier of the agent to retrieve

Response

id
integer

Unique identifier of the agent

name
string

Name of the agent

type
string

Type of the agent (DeFi, NFT, Social, or Trading)

description
string

Detailed description of what the agent does

triggers
array

List of conditions that activate the agent

actions
array

List of actions the agent performs when triggered

Error Codes

404
object

Returned when the specified agent ID is not found

400
object

Returned when the request is invalid (e.g., invalid ID format)

curl -X GET 'https://api.buildr.bot/agent/12345' \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "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"
      }
    }
  ]
}