Jump to
Ctrl
+
/

List Addresses by Vault and Blockchain

GET
/wallet-as-a-service/wallets/{vaultId}/{blockchain}/addresses

List Addresses by Vault ID and Blockchain

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

vaultId string Required

Defines the unique ID of the Vault.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-20
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
items array Items (object) Required
address string Required

Specifies the specific address.

2MtzNEqm2D9jcbPJ5mW7Z3AUNwqt3afZH66
addressType string Required

The type of the address (deposit/change).

change
createdTimestamp integer Required

Defines the specific UNIX time when the deposit address was created.

1624028267
id string Required
654902b79943250007d7bd1d
label string Required

Represents a custom label that customers can set up for addresses. E.g. custom label named "User Email Address".

yourAddressLabelHere

Credits Cost : 1 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
URL

{
    "apiVersion": "2023-04-20",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "items": [
            {
                "address": "2MtzNEqm2D9jcbPJ5mW7Z3AUNwqt3afZH66",
                "addressType": "change",
                "createdTimestamp": 1624028267,
                "id": "654902b79943250007d7bd1d",
                "label": "yourAddressLabelHere"
            }
        ]
    }
}