curl --request POST \
--url https://api.easierprop.com/api/copy-trade \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"account_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"symbol": "EURUSD",
"side": "buy",
"type": "market",
"volume": 0.01,
"price": 123,
"sl": 123,
"tp": 123,
"comment": "<string>"
}
'{
"ok": true,
"data": {
"results": [
{}
],
"succeeded": 2,
"failed": 0
}
}Place the same trade on multiple accounts simultaneously. Returns per-account results.
curl --request POST \
--url https://api.easierprop.com/api/copy-trade \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"account_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"symbol": "EURUSD",
"side": "buy",
"type": "market",
"volume": 0.01,
"price": 123,
"sl": 123,
"tp": 123,
"comment": "<string>"
}
'{
"ok": true,
"data": {
"results": [
{}
],
"succeeded": 2,
"failed": 0
}
}Client API key (prefixed with sk_)
Target account IDs to place the trade on
"EURUSD"
buy, sell "buy"
market, limit, stop, stop_limit "market"
0.01