Skip to main content
POST
/
api
/
copy-trade
Copy trade
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
  }
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Body

application/json
account_ids
string<uuid>[]
required

Target account IDs to place the trade on

symbol
string
required
Example:

"EURUSD"

side
enum<string>
required
Available options:
buy,
sell
Example:

"buy"

type
enum<string>
required
Available options:
market,
limit,
stop,
stop_limit
Example:

"market"

volume
number
required
Example:

0.01

price
number
sl
number
tp
number
comment
string

Response

200 - application/json

Copy trade result

ok
boolean
Example:

true

data
object