取得請求歷史記錄

此請求傳回包含報告的完整檢查歷史記錄

GET https://api.cryptomus.com/v2/user-api/aml/check/request 複製

回覆

響應參數

範圍描述
id唯一請求標識符
network_code請求網路代碼(btc、eth、bsc…)
type地址或交易號
address正在檢查地址
txid交易哈希
state狀態:待定、完成、失敗
risk風險評估結果
completed_at完成日期和時間
paginate分頁參數

範圍

id

描述

唯一請求標識符

範圍

network_code

描述

請求網路代碼(btc、eth、bsc…)

範圍

type

描述

地址或交易號

範圍

address

描述

正在檢查地址

範圍

txid

描述

交易哈希

範圍

state

描述

狀態:待定、完成、失敗

範圍

risk

描述

風險評估結果

範圍

completed_at

描述

完成日期和時間

範圍

paginate

描述

分頁參數

回應範例


1{
2  "state": 0,
3  "result": {
4    "items": [
5      {
6        "id": "01k09s6eryvvtqtjen00mrecsd",
7        "network_code": "btc",
8        "type": "address",
9        "address": "bc1q6prt2hne8e8k4mguxetn2cm0kcmdt9yvsey3x7",
10        "txid": null,
11        "state": "completed",
12        "risk": null,
13        "completed_at": "2025-07-16T14:12:08+00:00"
14      }
15    ],
16    "paginate": {
17      "has_pages": true,
18      "last_page": 2,
19      "next_page": "2",
20      "previous_page": null
21    }
22  }
23}
複製