Address
The address endpoints allow you to create addresses and retrieve address information from your wallets.
Create Address
POST
https://api.walletcloud.app/wallet/:walletId/address
Create an address for a wallet
Path Parameters
walletId*
string
ID of the wallet to create an address for.
Headers
x-api-key*
string
Api key of the wallet to create an address for.
Request Body
addressLabel
string
This is the label of the address you want create. It could be a description of what the address purpose or a userId.
Get Address
GET
https://api.walletcloud.app/wallet/:walletId/:addressOrId
Get the details of an address with the address or the addressId
Path Parameters
walletId*
string
ID of the wallet to fetch details from.
addressOrId*
string
Address or ID of the address to be fetched..
Headers
x-api-key*
string
Api key of the wallet you want to retrieve an address from.
List Addresses
GET
https://api.walletcloud.app/wallet/:walletId/addresses
List all the addresses in a wallet
Path Parameters
walletId*
string
ID of the wallet to fetch details from.
Query Parameters
nextItemKey
string
The start key of the next batch of addresses to fetch.
limit
integer
Maximum number of results to return per request. If the result set is truncated, use nextItemKey
to get the next batch.
Default: 25
Headers
x-api-key*
string
Api key of the wallet you want to retrieve addresses from.
Last updated