Skip to main content

Copy DCA Bot

POST
/ver1/bots/:bot_id/copy_and_create
Permission: BOTS_WRITE
Security: SIGNED

Copies the bot from or to another linked exchange account connected to 3Commas.


Path Parameter

bot_idintegerrequired

Unique 3Commas ID for this DCA Bot entity you want to copy.

Body Parameters

namestringrequired

The name for new DCA Bot specified by the user.

secretstringrequired

A unique code used for copying this bot, retrieved from the url_secret parameter.

amountnumberrequired

Amount allocated for bot usage.

Example Request

POST
/ver1/bots/12345678/copy_and_create
{
"name": "Name DCA Bot",
"secret": "..."
}

Response Parameters

bot_idnumber

Unique 3Commas ID for this DCA Bot entity.

bot_required_amountnumber

The minimum amount of funds required to launch this bot.

Example Responses

{
"bot_id": 23456789,
"bot_required_amount": 240
}