Skip to content

022send_order

ipqhjjybj edited this page Apr 2, 2020 · 4 revisions

Send Order

  • Request description: send order

  • Request type: POST

  • Signature required: Yes

  • Request Url:http://127.0.0.1:1024/api/v1/place-order

  • Request parameter:

    name type description
    price string the string of the price
    amount string the string of the amount
    side string buy / sell
    symbol string BTC / USDT
  • Return value description:

    name type description
    code int status_code, 200 is right
    msg string the response msg
    result json the json msg
  • Example:

# Request
POST http://127.0.0.1:1024/api/v1/place-order

{
  'price': '6100',
  'amount': '0.01',
  'side': 'buy',
  'symbol': 'BTC/USDT'
}

# Response
{
  "code": 200,
  "msg": "",
  "result": {
    "data": ""
  }
}

MOV Trading API Introduction

MOV Exchange has such features.

HTTP API Introduction

Common API

Flash API

Spot API

WebSocket API Introduction


If any problems occur when using API, please contact us: support@8btc.com

Clone this wiki locally