獲取詳細報告

按特定請求的 ID 進行詳細報告

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

回覆

響應參數

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

範圍

id

描述

唯一請求標識符

範圍

network_code

描述

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

範圍

type

描述

地址或交易號

範圍

address

描述

正在檢查地址

範圍

txid

描述

交易哈希

範圍

state

描述

狀態:待定、完成、失敗

範圍

risk

描述

風險評估結果

範圍

completed_at

描述

完成日期和時間

範圍

pdf_report

描述

PDF URL(如果未產生則為空)

回應範例


1{
2  "state": 0,
3  "result": {
4      "id": "...",
5      "network_code": "btc",
6      "type": "address",
7      "address": "bc1...",
8      "txid": null,
9      "state": "completed",
10      "risk": null,
11      "pdf_report": null,
12      "completed_at": "2025-07-16T14:12:08+00:00"
13  }
14}
複製