Skip to main content
GET
/
v1
/
wallets
/
{walletId}
Get Wallet
curl --request GET \
  --url https://api.example.com/v1/wallets/{walletId}
Endpoint: GET https://api.rebelfi.io/v1/wallets/:walletId
Retrieve a specific wallet by its ID.

Path Parameters

ParameterTypeRequiredDescription
walletIdnumberYesWallet ID

Example Request

curl -X GET "https://api.rebelfi.io/v1/wallets/42" \
  -H "x-api-key: your_api_key"

Example Response

{
  "walletId": 42,
  "walletAddress": "So11...abc",
  "blockchain": "solana",
  "userId": "user-123",
  "orgMetadata": { "plan": "premium" },
  "createdAt": "2024-01-15T10:30:00.000Z"
}

Errors

CodeDescription
WALLET_NOT_FOUNDWallet with given ID doesn’t exist