Jump to
Ctrl
+
/

Generate Deposit Address

POST
/vaults/{vaultId}/{blockchain}/{network}/addresses

Through this endpoint customers can generate a new Receiving/Deposit Addresses into their Vaults.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, Binance Smart Chain, Tron etc.

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.

vaultId string Required

Represents the unique ID of the specific 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.

Request Body Schema application/json

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.

data object Required
item object Required
label string Required

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

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-05-09
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
item object Required
address string Required

Specifies the specific deposit address.

2MtzNEqm2D9jcbPJ5mW7Z3AUNwqt3afZH66
createdTimestamp string Required

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

1624028267
label string Required

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

yourAddressLabelHere
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "address": "2MtzNEqm2D9jcbPJ5mW7Z3AUNwqt3afZH66",
            "createdTimestamp": "1624028267",
            "label": "yourAddressLabelHere"
        }
    }
}