Get DCA Bot profit data
GET
/ver1/bots/:bot_id/profit_by_dayReturns daily profit data for a specified DCA Bot, grouped by date and identified by its unique ID.
Response Parameters
Example Response
- 201 Created
{
"data": [
{
"s_date": "2024-10-28",
"unix_timestamp": 1730073600,
"profit": {
"btc": "0.00002960",
"usd": "2.05"
}
},
{
"s_date": "2024-10-29",
"unix_timestamp": 1730160000,
"profit": {
"btc": "0.00001436",
"usd": "1.02"
}
},
{
"s_date": "2024-10-30",
"unix_timestamp": 1730246400,
"profit": {
"btc": "0.00001456",
"usd": "1.06"
}
},
{
"s_date": "2024-11-06",
"unix_timestamp": 1730851200,
"profit": {
"btc": "0.00002720",
"usd": "2.05"
}
},
{
"s_date": "2024-11-07",
"unix_timestamp": 1730937600,
"profit": {
"btc": "0.00002823",
"usd": "2.13"
}
}
]
}