盘口深度

**简要描述:** - **请求URL:** - ` http://xx.com/app/cct/depth` **请求方式:** - GET FORM **传入参数:** |参数名|必选|类型|说明| |:---- |:----|:----- |----- | |tradePairId |是|string|交易对id | **返回示例** ``` { "stateCode": 0, "message": "", "data": { "buy":[{ "transactionUnit":600, "transactionNumber":500, }], "sell":[{ "transactionUnit":600, "transactionNumber":500, }] } } ``` **返回参数说明** |参数名|类型|说明| |:----- |:-----|----- | |stateCode |int |接口状态码 0:正常 -1:异常 1:token过期 | |message |string |接口消息 | |transactionUnit|decimal|价格| |transactionNumber|decimal|数量 | **备注** - 更多返回错误代码请看首页的错误代码描述