獲取詳細報告
按特定請求的 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_report | PDF 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}複製