GET
/
ramp
/
wallet
/
{wallet_id}
Get wallet details
curl --request GET \
  --url https://api.etherfuse.com/ramp/wallet/{wallet_id} \
  --header 'Authorization: <api-key>'
{
  "walletId": "123e4567-e89b-12d3-a456-426614174000",
  "customerId": "123e4567-e89b-12d3-a456-426614174001",
  "createdAt": "2024-01-01T00:00:00Z",
  "updatedAt": "2024-01-01T00:00:00Z",
  "publicKey": "9Qx7r...",
  "blockchain": "solana",
  "isAuthenticated": true
}

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

wallet_id
string<uuid>
required

ID of the wallet to retrieve

Response

Wallet details retrieved successfully

walletId
string<uuid>

Unique identifier for the wallet

customerId
string<uuid>

ID of the customer who owns this wallet

createdAt
string<date-time>

Timestamp when the wallet was created

updatedAt
string<date-time>

Timestamp when the wallet was last updated

deletedAt
string<date-time> | null

Timestamp when the wallet was deleted (if applicable)

displayName
string | null

Display name for the wallet

publicKey
string

Public key of the wallet

blockchain
enum<string>

Blockchain type

Available options:
solana
isAuthenticated
boolean

Whether the wallet is authenticated