SUI 지갑 정보(ObjectID리스트) 조회

SUI 지갑에 코인에 해당하는 object id 리스트 조회

GET https://{dashboard-domain}/v1.0/db/me/sui/objectids

Query Parameters

Name
Type
Description

coin_id*

int64

SUI 토큰 ID

Headers

Name
Type
Description

Authorization*

string

Bearer {{web-access-token}}

{
    "return": 0,
    "message": "success",
    "value": {
        "object_ids": [
            "0x0a466a7ea12b90426ce7c225be6a51d426b698da5bc9ff04b485d82fc9f7c7ee",
            "0x2594deb38245fb646dc48d285156d1f932cc877cbce1cdabcbff190904085ab7",
            "0x4787148869ab3f8cb8314148a2fbbddbb3c50d6eb45f895791edbd4d4eedb577",
            "0x8876340e1790f3bd1a87142a5e5582abf30bdb636a686c8f0f0d34caee7ee071",
            "0xc6d380c863ade8c102057cbec316628b825e3161827c1030fc685ed1d7939feb"
        ]
    }
}

curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/sui/objectids?coin_id=10' \
--header 'Authorization: Bearer eyJhbGciOiJ...'

Last updated