# Wallet Management Cryptocurrency wallet management operations ## Create Wallet - [POST /wallets](https://docs.chicksx.com/apis/openapi/wallet-management/createwallet.md): Creates a new cryptocurrency wallet entry for a user. This endpoint must be called from your secure backend server. Security: Requires merchant authentication headers. ## Get All Wallets - [GET /wallets](https://docs.chicksx.com/apis/openapi/wallet-management/getallwallets.md): Retrieves all cryptocurrency wallets associated with your merchant account. This endpoint must be called from your secure backend server. Security: Requires merchant authentication headers. ## Search Wallet - [GET /wallets/search](https://docs.chicksx.com/apis/openapi/wallet-management/getwallet.md): Searches for a wallet by currency code and optionally by network code. This endpoint must be called from your secure backend server. If multiple networks exist for a currency and no network code is provided, the response will include available networks. Security: Requires merchant authentication headers. ## Get Wallet by ID - [GET /wallets/{id}](https://docs.chicksx.com/apis/openapi/wallet-management/getwalletbyid.md): Retrieves a specific wallet by its unique identifier. This endpoint must be called from your secure backend server. Security: Requires merchant authentication headers. ## Update Wallet - [PATCH /wallets/{id}](https://docs.chicksx.com/apis/openapi/wallet-management/updatewallet.md): Updates an existing wallet's information. This endpoint must be called from your secure backend server. Security: Requires merchant authentication headers. ## Delete Wallet - [DELETE /wallets/{id}](https://docs.chicksx.com/apis/openapi/wallet-management/deletewallet.md): Deletes a wallet by its ID. This endpoint must be called from your secure backend server. Security: Requires merchant authentication headers.