遍历Bit-ID
-
请求地址:
GET /bitids
-
接口概述:
遍历Bit-ID数据。
-
请求参数:
参数名 参数类型 参数说明 必需 备注 offset integer 响应结果起始下标 否 默认0 limit integer 响应结果的数量 否 默认50,最大1000 -
请求体:
无
-
请求示例:
GET /bitanswer/api/bitids?limit=1 HTTP/1.1 Host: back-office-api.bitanswer.cn bitkey: ••••••
-
响应示例:
{ "status": 0, "data": { "total": 33, "items": [ { "status": 0, "guid": "AAAAAAAAAAAAAAAA", "regDate": "2023-09-21 15:53:10", "tokenType": 5 } ] } }
查询Bit-ID
-
请求地址:
POST /bitids/data
-
接口概述:
根据指定条件查询Bit-ID。
-
请求参数:
参数名 参数类型 参数说明 必需 备注 offset integer 响应结果起始下标 否 默认0 limit integer 响应结果的数量 否 默认50,最大1000 -
请求体:
参数名 参数类型 参数说明 必需 备注 querys array 查询参数 否 sorts array 排序参数 否 querys
支持:
status
,guid
,regDate
,label
,sn
,tokenType
。regDate
格式为yyyy-MM-dd HH:mm:ss
。sorts
支持:
status
,guid
,regDate
,label
,sn
,tokenType
。 -
请求示例:
POST /bitanswer/api/bitids/data HTTP/1.1 Host: back-office-api.bitanswer.cn Content-Type: application/json bitkey: •••••• { "querys": [ { "name": "tokenType", "op": "=", "values": [ 6 ] } ], "sorts": [ { "name": "status" } ] }
-
响应示例:
{ "status": 0, "data": { "total": 7, "items": [ { "status": 0, "guid": "AAAAAAAAAAAAAAAA", "regDate": "2023-08-25 17:50:30", "sn": "xxxxx", "tokenType": 6 } ] } }
按Bit-ID获取比特ID
-
请求地址:
GET /bitids/guid/{guid}/{tokenType}
-
接口概述:
按Bit-ID查询指定的比特ID。
-
请求参数:
地址参数
参数名 参数类型 参数说明 必需 备注 guid string Bit-ID 是 tokenType integer Bit-ID类型 是 5:传统的Bit-ID
6:Bit-ID浮动 -
请求体:
无
-
请求示例:
POST /bitanswer/api/bitids/guid/{guid}/{tokenType} HTTP/1.1 Host: back-office-api.bitanswer.cn bitkey: ••••••
-
响应示例:
{ "status": 0, "data": { "total": 1, "items": [ { "guid": "AAAAAAAAAAAAAAAA", "regDate": "2023-08-25 17:50:30", "tokenType": 6, "status": 0, } ] } }
按喷码获取比特ID
-
请求地址:
GET /bitids/label/{label}
-
接口概述:
按喷码查询指定的比特ID。
-
请求参数:
地址参数
参数名 参数类型 参数说明 必需 备注 label string Bit-ID喷码 是 -
请求体:
无
-
请求示例:
GET /bitanswer/api/bitids/label/{label} HTTP/1.1 Host: back-office-api.bitanswer.cn bitkey: ••••••
-
响应示例:
{ "status": 0, "data": { "total": 1, "items": [ { "status": 0, "guid": "AAAAAAAAAAAAAAAB", "regDate": "2023-08-25 17:50:30", "label": "LABEL_1", "tokenType": 5 } ] } }