Effortless customer verification now available   View changelog
SpherePaySpherePay

Wallets

Add and manage stablecoin wallets to enable transfers across networks and currencies.

Adding a stablecoin wallet for your customer requires specific details that vary by currency and region. In this guide, we break down what’s required for common cases.

Warning

Wallets is an instrument that registers a real wallet address on the blockchain. It does not have any balance or funds associated with it. It is used as an identifier associated with a customer to initiate transfers to or from a customer.

Wallet Creation (API)

POST https://api.spherepay.co/v2/wallet
POST https://api.sandbox.spherepay.co/v2/wallet

For full API details, refer to the Create Wallet API Reference.

Supported Networks

NetworkNetwork CodeUSDCUSDT
SolanasolComing Soon
Ethereumethereum
Trontron-
Polygonpolygon-
Basebase-
Arbitrumarbitrum-
Avalancheavalanche-
[NEW] Starknetstarknet-

Request Example

{
  "customer": "customer_1234567890",
  "network": "sol",
  "address": "0x1234567890123456789012345678901234567890"
}

Response Example

{
  "id": "wallet_1234567890",
  "address": "0x1234567890123456789012345678901234567890",
  "network": "sol",
  "customerId": "customer_1234567890",
  "created": "2026-01-25T12:00:00.000Z",
  "updated": "2026-01-25T12:00:00.000Z"
}