πŸ’΅Wallet API

Create Wallet

triangle-exclamation

POST https://coinstack.net/api/v1/wallet

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

currency*

String

Wallet currency

metadata

String

Identifying metadata

webhook*

String

Deposit webhook notification URL

{
   "success":true,
   "response":{
      "wallet":{
         "walletID":"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
         "currency":"{currency}",
         "address":"{address}[:{memo}]",
         "minimum":"{minimum}",
         "webhook":"{webhook}",
         "metadata":"{metadata}"
      }
   }
}

Get Wallet

GET https://coinstack.net/api/v1/wallet

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

walletID*

String

Wallet ID

Get Wallet Deposits

GET https://coinstack.net/api/v1/wallet/deposits

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

walletID*

String

Wallet ID

Get Deposit

GET https://coinstack.net/api/v1/wallet/deposit

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

depositID*

String

Deposit ID

Get Deposit By Hash

GET https://coinstack.net/api/v1/wallet/deposit/hash

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

hashID*

String

Transaction hash

Update Wallet Webhook

circle-info

To update a particular wallet's webhook URL, include both the walletID and webhook parameters. To update all wallets' webhook URLs that are a specific currency, include both the currency and webhook parameters. To update all wallets' webhook URLs, regardless of their currency, include only the webhook parameter.

PUT https://coinstack.net/api/v1/wallet/webhook

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

walletID

String

Wallet ID

webhook*

String

Deposit webhook notification URL

currency

String

Currency

Update Wallet Metadata

PUT https://coinstack.net/api/v1/wallet/metadata

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Request Body

Name
Type
Description

walletID*

String

Wallet ID

metadata*

String

Identifying metadata

Get Wallet Currencies

GET https://coinstack.net/api/v1/wallet/currencies

Headers

Name
Type
Description

X-API-KEY*

String

Account API key

Last updated