遍历Bit-ID

  1. 请求地址:GET /bitids

  2. 接口概述:

    遍历Bit-ID数据。

  3. 请求参数:

    参数名 参数类型 参数说明 必需 备注
    offset integer 响应结果起始下标 默认0
    limit integer 响应结果的数量 默认50,最大1000

    如何遍历?

  4. 请求体:

  5. 请求示例:

    GET /bitanswer/api/bitids?limit=1 HTTP/1.1
    Host: back-office-api.bitanswer.cn
    bitkey: ••••••
  6. 响应示例:

    {
       "status": 0,
       "data": {
           "total": 33,
           "items": [
               {
                   "status": 0,
                   "guid": "AAAAAAAAAAAAAAAA",
                   "regDate": "2023-09-21 15:53:10",
                   "tokenType": 5
               }
           ]
       }
    }

    响应体说明

查询Bit-ID

  1. 请求地址: POST /bitids/data

  2. 接口概述:

    根据指定条件查询Bit-ID。

  3. 请求参数:

    参数名 参数类型 参数说明 必需 备注
    offset integer 响应结果起始下标 默认0
    limit integer 响应结果的数量 默认50,最大1000

    如何遍历?

  4. 请求体:

    参数名 参数类型 参数说明 必需 备注
    querys array 查询参数
    sorts array 排序参数

    如何查询?

    querys

    支持:statusguidregDatelabelsntokenType

    regDate格式为yyyy-MM-dd HH:mm:ss

    sorts

    支持:statusguidregDatelabelsntokenType

    参数说明

  5. 请求示例:

    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"
           }
       ]
    }
  6. 响应示例:

    {
       "status": 0,
       "data": {
           "total": 7,
           "items": [
               {
                   "status": 0,
                   "guid": "AAAAAAAAAAAAAAAA",
                   "regDate": "2023-08-25 17:50:30",
                   "sn": "xxxxx",
                   "tokenType": 6
               }
           ]
       }
    }

    响应体说明

按Bit-ID获取比特ID

  1. 请求地址:GET /bitids/guid/{guid}/{tokenType}

  2. 接口概述:

    按Bit-ID查询指定的比特ID。

  3. 请求参数:

    地址参数

    参数名 参数类型 参数说明 必需 备注
    guid string Bit-ID
    tokenType integer Bit-ID类型 5:传统的Bit-ID
    6:Bit-ID浮动
  4. 请求体:

  5. 请求示例:

    POST /bitanswer/api/bitids/guid/{guid}/{tokenType} HTTP/1.1
    Host: back-office-api.bitanswer.cn
    bitkey: ••••••
  6. 响应示例:

    {
       "status": 0,
       "data": {
           "total": 1,
           "items": [
               {
                   "guid": "AAAAAAAAAAAAAAAA",
                   "regDate": "2023-08-25 17:50:30",
                   "tokenType": 6,
                   "status": 0,
               }
           ]
       }
    }

    响应体说明

按喷码获取比特ID

  1. 请求地址:GET /bitids/label/{label}

  2. 接口概述:

    按喷码查询指定的比特ID。

  3. 请求参数:

    地址参数

    参数名 参数类型 参数说明 必需 备注
    label string Bit-ID喷码
  4. 请求体:

  5. 请求示例:

    GET /bitanswer/api/bitids/label/{label} HTTP/1.1
    Host: back-office-api.bitanswer.cn
    bitkey: ••••••
  6. 响应示例:

    {
       "status": 0,
       "data": {
           "total": 1,
           "items": [
               {
                   "status": 0,
                   "guid": "AAAAAAAAAAAAAAAB",
                   "regDate": "2023-08-25 17:50:30",
                   "label": "LABEL_1",
                   "tokenType": 5
               }
           ]
       }
    }

    响应体说明