Get Wallet Details
This endpoint retrieves detailed information about a specific wallet.
Request
GET /wallets/{wallet_id}
URL Parameters
| Parameter | Type | Description |
|---|---|---|
wallet_id | string | The unique ID of the wallet to retrieve |
Authentication
This endpoint requires authentication using one of the following methods:
- API Key:
X-API-Keyheader - 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
| Field | Type | Description |
|---|---|---|
result.id | string | Unique ID of the wallet (used in all API calls) |
result.name | string | Custom name of the wallet |
result.created_at | string | ISO 8601 timestamp of wallet creation |
result.updated_at | string | ISO 8601 timestamp of last wallet update |
Error Responses
| Status Code | Error Code | Description |
|---|---|---|
| 400 | bad_request | Invalid wallet ID format |
| 401 | unauthorized | Authentication failed |
| 403 | forbidden | User doesn't have required permissions |
| 404 | not_found | Wallet not found |
| 500 | server_error | Internal 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