Skip to main content

Get Wallet Details

This endpoint retrieves detailed information about a specific wallet.

Request

GET /wallets/{wallet_id}

URL Parameters

ParameterTypeDescription
wallet_idstringThe unique ID of the wallet to retrieve

Authentication

This endpoint requires authentication using one of the following methods:

  • API Key: X-API-Key header
  • OAuth 2.0: Authorization: Bearer {access_token} header

Example Request

curl -X GET "https://api.cryptofuse.io/wallets/550e8400-e29b-41d4-a716-446655440000" \
-H "X-API-Key: your_api_key"

Response

A successful response returns the detailed information about the specified wallet.

Example Response

{
"result": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Trading Wallet",
"created_at": "2025-03-15T10:20:30.456Z",
"updated_at": "2025-04-30T12:34:56.789Z"
}
}

Response Fields

FieldTypeDescription
result.idstringUnique ID of the wallet (used in all API calls)
result.namestringCustom name of the wallet
result.created_atstringISO 8601 timestamp of wallet creation
result.updated_atstringISO 8601 timestamp of last wallet update

Error Responses

Status CodeError CodeDescription
400bad_requestInvalid wallet ID format
401unauthorizedAuthentication failed
403forbiddenUser doesn't have required permissions
404not_foundWallet not found
500server_errorInternal server error

Notes

  • The wallet ID (id) is used in all API calls related to the wallet
  • This endpoint only returns the basic wallet information
  • To get the balances for this wallet, use the Get Wallet Balance endpoint