Install
openclaw skills install detDailyExpenseTracker API integration for recording expenses, checking balances, and managing transactions. Use when user mentions expenses, spending, transact...
openclaw skills install detBase URL: https://dailyexpensetracker.in/api
Token: Set in skills.entries.det.apiToken in openclaw.json
Auth Header: Authorization: Bearer <token>
Fetch wallets dynamically via /api/wallets endpoint. Cache wallet IDs locally after first fetch.
curl -X POST "https://dailyexpensetracker.in/api/transactions" \
-H "Authorization: Bearer $DET_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"wallet_id": 1,
"category_id": 5,
"amount": 100,
"type": "expense",
"transaction_date": "2026-02-21",
"description": "Groceries"
}'
Required fields: wallet_id, amount, type, transaction_date Types: expense, income, transfer
curl "https://dailyexpensetracker.in/api/transactions?per_page=10" \
-H "Authorization: Bearer $DET_TOKEN"
curl "https://dailyexpensetracker.in/api/wallets" \
-H "Authorization: Bearer $DET_TOKEN"
curl "https://dailyexpensetracker.in/api/categories" \
-H "Authorization: Bearer $DET_TOKEN"
transaction_date - Not date