Interface Description:
- Get the list of closed positions
Request URL:
https://apiv2.bitz.com/Contract/getContractMyPositions
Request Mode:
POST
Parameters:
Parameter | Required | Type | Comment |
---|---|---|---|
apiKey | true | string | User-applied apiKey |
timeStamp | true | string | Current timestamp |
nonce | true | string | Random 6-character string |
sign | true | string | Signature for requesting parameters |
contractId | true | int | Contract ID |
page | true | int | Default 1 range:1-10 |
pageSize | true | int | Default 50 range:1-50 |
How to sign for required parameter:
All parameters submitted by users except sign require signature.
First, sort signature strings in alphabetical order based on parameters (compare the first letter of all parameter, if they differ, then the string whose first letter comes earlier in the alphabet comes before the other string. If the first letters are the same, then the second letters are compared, and so on).
For example:Sign for the following parameter
apiKey=376892265asdad5d12726d8bbfbd8912b3&timeStamp=1510235730&nonce=309127&contractId=101&page=1&pageSize=20 and add application secretKey (only needs value, parameter and ‘&” is not required.)
For example:
secretKey=aQmE8U7bxj16KdJcSd3yX8F8Sakd8aO6LopnHXh27d4kWyb28PxcaTvGrajLDvAw
Signature string after splicing: apiKey=376892265asdad5d12726d8bbfbd8912b3&timeStamp=1510235730&nonce=309127&contractId=1&page=1&pageSize=20aQmE8U7bxj16KdJcSd3yX8F8Sakd8aO6LopnHXh27d4kWyb28PxcaTvGrajLDvAw
Note,"sign" is a required parameter.
Last,use md5 32bit algorithm to apply signature algorithm to the parameter, and then generate final signature string (the string assigns value to parameter ‘sign’).
Example of Return Result:
{
"status":200,
"msg":"",
"data":{
{
"positionId":"9",//position ID
"contractId":"101",//contract ID
"rlzPnl":"0.00775756",//realized profits and losses
"startTime":1557747092,//start time
"endTime":1557783198,//end time
"pair":"BTC_USD"//contract market
}
},
"time":1533035297,
"microtime":"0.41892000 1533035297",
"source":"api"
}