Strategies
Strategies define high-level plans—like DeFi trading or data analytics—that guide agents to achieve specific goals. They encapsulate goals, parameters, and logic for optimized decision-making.
Retrieve details of a specific strategy, including its parameters and associated agents.
Path parameters
idstringRequired
The unique identifier of the strategy.
Responses
200
Strategy details retrieved successfully.
application/json
404
Strategy not found.
500
Server error while retrieving the strategy.
get
/strategies/{id}Modify the parameters or description of an existing strategy.
Path parameters
idstringRequired
The unique identifier of the strategy.
Body
titlestringOptional
descriptionstringOptional
Responses
200
Strategy updated successfully.
application/json
400
Invalid update payload.
404
Strategy not found.
500
Server error while updating the strategy.
patch
/strategies/{id}Last updated