Skip to main content
POST
/
api
/
v1
/
stores
/
{storeId}
/
wallets
/
evm
Register a new evm wallet
curl --request POST \
  --url https://api.zenobank.io/api/v1/stores/{storeId}/wallets/evm \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "custodialType": "NON_CUSTODIAL",
  "walletAddress": "<string>"
}
'

Headers

x-api-key
string<password>
required

External API Key

Path Parameters

storeId
string
required

Body

application/json
custodialType
enum<string>
required

The type of custodial wallet this is

Available options:
CUSTODIAL,
NON_CUSTODIAL
Example:

"NON_CUSTODIAL"

walletAddress
string
required

Response

201 - undefined