Skip to main content

Get Profit History Details

Get detailed profit sharing history records.

HTTP Request

GET /api/v1/copy/mix-trader/profit-history-details

Request Parameters

ParameterTypeRequiredDescription
coinstringNoCoin type (e.g., USDT)
startTimestringNoStart time in milliseconds
endTimestringNoEnd time in milliseconds
limitstringNoNumber of results per request. Default: 100, Max: 100
idLessThanstringNoFilter results with ID less than this value
idGreaterThanstringNoFilter results with ID greater than this value

Request Example

curl -X GET "https://open-api.bydoxe.com/api/v1/copy/mix-trader/profit-history-details?coin=USDT&startTime=1763372880000&endTime=1763459280000&limit=100" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000" \
-H "Content-Type: application/json"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataobjectResponse data
> profitListarrayList of profit records
>> profitIdstringProfit record ID
>> coinstringCoin type
>> profitstringProfit amount
>> followerUidstringFollower's user ID
>> profitTimestringProfit time in milliseconds
> endIdstringLast ID for pagination

Response Example

{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"profitList": [
{
"profitId": "123456789",
"coin": "USDT",
"profit": "25.12345678",
"followerUid": "100001",
"profitTime": "1763459280000"
}
],
"endId": "123456789"
}
}

Error Codes

CodeMessage
45002User not found
45003Not a copy trader
50000System error