요청 내역 가져오기
이 요청은 보고서와 함께 전체 확인 내역을 반환합니다.
GET https://api.cryptomus.com/v2/user-api/aml/check/request 복사
응답
응답 매개 변수
매개변수 | 설명 |
---|---|
id | 고유 요청 식별자 |
network_code | 네트워크 코드(btc, eth, bsc...)를 요청하세요. |
type | 주소 또는 txid |
address | 주소 확인 중 |
txid | 거래 해시 |
state | 상태: 보류, 완료, 실패 |
risk | 위험성 평가 결과 |
completed_at | 완료 날짜 및 시간 |
paginate | 페이지 매김 매개변수 |
매개변수
id설명
고유 요청 식별자매개변수
network_code설명
네트워크 코드(btc, eth, bsc...)를 요청하세요.매개변수
type설명
주소 또는 txid매개변수
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}
복사