v1

latestOpenAPI 3.0.02026-07-224537337.5 KB

Create a Wallet

Create a new wallet and associate it with a customer.

post/v2/wallet

Request body

customerIdstring required

The unique identifier of the customer who owns this wallet.

addressstring required

The wallet address on the specified network. Must be a valid address format for the network.

network'arbitrum' | 'avalanche' | 'base' | 'ethereum' | 'polygon' | 'sol' | 'tron' required

The blockchain network for this wallet. Must be a supported crypto network.

Example request

{
  "customerId": "customer_66c4168d418a410eae282b83883bdc39",
  "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
  "network": "sol"
}

Response

idstring required

The unique identifier of the wallet.

addressstring required

The wallet address on the specified network.

network'sol' | 'fogo' | 'ethereum' | 'arbitrum' | 'polygon' | 'base' | 'avalanche' | 'sui' | 'noble' | 'sei' | 'tron' | 'starknet' | 'aptos' | 'hyperliquid' required

The blockchain network for this wallet.

customerIdstring required

The unique identifier of the customer who owns this wallet.

createdstring required

The ISO 8601 timestamp when the wallet was created.

updatedstring required

The ISO 8601 timestamp when the wallet was last updated.

Example response

{
  "id": "wallet_ce745ef7f3df4b9a8bff1301ce24b045",
  "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
  "network": "sol",
  "customerId": "customer_66c4168d418a410eae282b83883bdc39",
  "created": "2025-01-01T00:00:00.000Z",
  "updated": "2025-01-01T00:00:00.000Z"
}