### Get User Balances with Stake-API Source: https://github.com/stake-player/stake-api/blob/main/README.md Demonstrates how to use the Stake-API to retrieve and display a user's available balances for different currencies. It requires an API key for authentication and processes the response to print the amount and currency. ```Python from stake_api import Stake stake = Stake('Your API Key.') response = stake.user_balances() for currency in response['data']['user']['balances']: print(f"{currency['available']['amount']} {currency['available']['currency'].upper()}") ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.