Bitfinex Lending Monitor
Use this skill to fetch and summarize Bitfinex funding收益 from API.
What to collect
- Funding wallet balances from
v2/auth/r/wallets - Active funding credits from
v2/auth/r/funding/credits/{Symbol} - Ledger entries from
v2/auth/r/ledgers/{Currency}/histfiltered bywallet=funding
Run
- Export API credentials:
export BITFINEX_API_KEY="your_api_key"
export BITFINEX_API_SECRET="your_api_secret"
- Run summary:
python3 skills/bitfinex-lending-monitor/scripts/check_lending.py --currency USD --days 7
- Optional JSON output:
python3 skills/bitfinex-lending-monitor/scripts/check_lending.py --currency USD --days 7 --json
Notes
- Prefer read-only API permissions for safety.
- Timestamps are milliseconds since epoch.
- If no
--currencyis passed, script defaults toUSDand symbolfUSD.