Skip to main content
Get a Wallet
curl --request GET \
  --url https://api.spherepay.co/v2/wallet/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wallet_ce745ef7f3df4b9a8bff1301ce24b045",
  "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
  "network": "sol",
  "customerId": "customer_66c4168d418a410eae282b83883bdc39",
  "created": "2025-01-01T00:00:00.000Z",
  "updated": "2025-01-01T00:00:00.000Z"
}
Use this endpoint to retrieve a single registered wallet by its ID. The response includes the wallet address, its blockchain network, and the ID of the owning customer.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The wallet ID

Minimum string length: 1
Example:

"wallet_ce745ef7f3df4b9a8bff1301ce24b045"

Response

id
string
required

The unique identifier of the wallet.

Example:

"wallet_ce745ef7f3df4b9a8bff1301ce24b045"

address
string
required

The wallet address on the specified network.

Example:

"7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"

network
enum<string>
required

The blockchain network for this wallet.

Available options:
sol,
fogo,
ethereum,
optimism,
arbitrum,
polygon,
base,
avalanche,
sui,
noble,
sei,
tron,
starknet,
aptos,
hyperliquid
Example:

"sol"

customerId
string
required

The unique identifier of the customer who owns this wallet.

Example:

"customer_66c4168d418a410eae282b83883bdc39"

created
string
required

The ISO 8601 timestamp when the wallet was created.

Example:

"2025-01-01T00:00:00.000Z"

updated
string
required

The ISO 8601 timestamp when the wallet was last updated.

Example:

"2025-01-01T00:00:00.000Z"

Last modified on June 18, 2026