跳转到主要内容
GET
/
v1
/
kyt
/
addresses
KYT - 获取组织地址
curl --request GET \
  --url https://api-dex.chainstream.io/v1/kyt/addresses \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "page": 123,
  "pageSize": 123,
  "totalPages": 123,
  "data": [
    {
      "id": 123,
      "orgId": "<string>",
      "address": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

查询参数

page
number
默认值:1

页码(从 1 开始)

必填范围: x >= 1
pageSize
number
默认值:20

每页项目数

必填范围: 1 <= x <= 100

响应

200 - application/json
total
number
必填

项目总数

page
number
必填

当前页码

pageSize
number
必填

每页项目数

totalPages
number
必填

总页数

data
object[]
必填

地址记录列表