Skills wallet-api
Interact with the BudgetBakers Wallet API for personal finance data. Use when the user needs to query accounts, categories, transactions (records), budgets, or templates from their Wallet app via the REST API. Requires WALLET_API_TOKEN environment variable.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/andresubri/wallet-api" ~/.claude/skills/clawdbot-skills-wallet-api && rm -rf "$T"
manifest:
skills/andresubri/wallet-api/SKILL.mdsource content
Wallet API Skill
Interact with the BudgetBakers Wallet personal finance API.
Prerequisites
- Premium Wallet plan required for API access
- API Token from web.budgetbakers.com/settings/apiTokens
- Set
environment variableWALLET_API_TOKEN
Quick Start
export WALLET_API_TOKEN="your_token_here" ./scripts/wallet-api.sh me
API Reference
See references/api-reference.md for:
- Authentication details
- Rate limiting (500 req/hour)
- Query filter syntax (text and range filters)
- Pagination parameters
- Data synchronization behavior
- Agent hints
Available Commands
| Command | Description |
|---|---|
| Current user info |
| List accounts |
| List categories |
| List transactions |
| List budgets |
| List templates |
Query Parameters
All list endpoints support:
(default 30, max 100)limit
(default 0)offset
Filter Examples
Recent transactions:
./wallet-api.sh records "recordDate=gte.2025-02-01&limit=50"
Amount range:
./wallet-api.sh records "amount=gte.100&amount=lte.500"
Text search:
./wallet-api.sh records "note=contains-i.grocery"
Category + date:
./wallet-api.sh records "categoryId=eq.<id>&recordDate=gte.2025-01-01"
Filter Prefixes
| Prefix | Meaning |
|---|---|
| Exact match |
| Contains (case-sensitive) |
| Contains (case-insensitive) |
| Greater than |
| Greater than or equal |
| Less than |
| Less than or equal |
Common Workflows
Get Account Balances
./wallet-api.sh accounts
List Categories for Organization
./wallet-api.sh categories
Recent Spending
./wallet-api.sh records "recordDate=gte.2025-02-01&limit=100"
Filter by Payee
./wallet-api.sh records "payee=contains-i.amazon"
Data Sync Considerations
- Initial sync returns 409 Conflict — wait and retry
- Recent app changes may not appear immediately
- Check
header for freshnessX-Last-Data-Change-At
Rate Limit Handling
Watch for:
when exceeding 500/hour429 Too Many Requests
headerX-RateLimit-Remaining- Add
for rate limit warningsagentHints=true