Copier Transfers
The /user/copier/transfers/:id endpoint returns all the transfers (deposit, withdraw, profit share) for a given copier.
Method
GET /user/copier/transfers/:id
Response
{
"status": 200,
"data": [
{
"id": 123,
"kind": "deposit",
"symbol": "BTC",
"amount": "0.005",
"usd_price": "40000.00",
"usd_value": "200.00",
"wallet_balance": "0.015",
"transact_time": "2024-01-15T10:00:00Z"
}
]
}
Transfer Kinds
| State | Description |
|---|---|
| deposit | Funds added to the copier account |
| withdrawal | Funds withdrawn from the copier account |
| profit_share | Earnings shared from the copier's profits |