Skip to main content
Create a new autonomous trading agent backed by ELUUP AI signals. Define the agent’s chain, connected wallet, risk parameters, and operational constraints at creation time.

Endpoint

Body parameters

string
required
Human-readable name for the agent.
string
required
ID of the wallet that will fund trades and receive proceeds. The wallet must already be connected.
integer
required
Chain the agent will trade on. Use 8453 for Base or 56 for BNB Chain.
object
Risk management configuration.
  • position_size_pct (number): Percentage of available balance to allocate per position (for example, 5.0).
  • stop_loss_pct (number): Stop loss percentage below entry price (for example, 8.0).
  • trailing_stop_pct (number): Trailing stop percentage (for example, 10.0).
  • take_profit_pct (number): Take profit percentage above entry price (for example, 25.0).
float
Minimum signal confidence from 0.0 to 1.0 required before the agent acts. Default is 0.75.
integer
Maximum number of concurrent open positions the agent may hold. Default is 5.

Example request

Response

string
Unique agent identifier.
string
Agent name.
string
Initial status after creation: idle.
integer
Chain the agent trades on.
string
Connected wallet ID.
object
Risk configuration object with position_size_pct, stop_loss_pct, trailing_stop_pct, take_profit_pct.
float
Minimum confidence threshold.
integer
Maximum concurrent open positions.
integer
Unix timestamp of creation.

Example response