Skip to main content
POST
/
api
/
brokers
/
demo
Create demo account
curl --request POST \
  --url https://api.easierprop.com/api/brokers/demo \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "company": "MetaQuotes",
  "group": "demo",
  "leverage": 100,
  "currency": "USD"
}
'
{
  "ok": true,
  "data": {}
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Body

application/json
company
string
required

Broker company name

Example:

"MetaQuotes"

group
string
default:demo

Server group

leverage
integer
default:100
currency
string
default:USD

Response

200 - application/json

Demo account created

ok
boolean
Example:

true

data
object