Saltar al contenido principal
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"
}
Usa este endpoint para recuperar una billetera registrada única por su ID. La respuesta incluye la dirección de la billetera, su red blockchain y el ID del cliente propietario.

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de ruta

id
string
requerido

The wallet ID

Minimum string length: 1
Ejemplo:

"wallet_ce745ef7f3df4b9a8bff1301ce24b045"

Respuesta

id
string
requerido

The unique identifier of the wallet.

Ejemplo:

"wallet_ce745ef7f3df4b9a8bff1301ce24b045"

address
string
requerido

The wallet address on the specified network.

Ejemplo:

"7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"

network
enum<string>
requerido

The blockchain network for this wallet.

Opciones disponibles:
sol,
fogo,
ethereum,
optimism,
arbitrum,
polygon,
base,
avalanche,
sui,
noble,
sei,
tron,
starknet,
aptos,
hyperliquid
Ejemplo:

"sol"

customerId
string
requerido

The unique identifier of the customer who owns this wallet.

Ejemplo:

"customer_66c4168d418a410eae282b83883bdc39"

created
string
requerido

The ISO 8601 timestamp when the wallet was created.

Ejemplo:

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

updated
string
requerido

The ISO 8601 timestamp when the wallet was last updated.

Ejemplo:

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

Última modificación el 18 de junio de 2026