요청 내역 가져오기

이 요청은 보고서와 함께 전체 확인 내역을 반환합니다.

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}
복사