Track and manage debt payoff plans on ZapYeti.com via REST API.
ZAPYETI_API_KEYUse the helper script for all API calls:
scripts/zy_api.sh <METHOD> <path> [json_body]
List all debts:
scripts/zy_api.sh GET /api/debts/
Get a specific debt:
scripts/zy_api.sh GET /api/debts/DEBT_ID
Log a payment:
scripts/zy_api.sh POST /api/payments/ \
'{"debt_id":"DEBT_ID","amount":5000,"date":"2026-03-06"}'
Payment summary:
scripts/zy_api.sh GET /api/payments/summary
Payment history:
scripts/zy_api.sh GET /api/payments/history
User profile:
scripts/zy_api.sh GET /api/users/me
Export data:
scripts/zy_api.sh GET /api/settings/export
scripts/zy_api.sh GET /api/settings/export/csv
See references/api.md for the full endpoint list including debts, payments, SimpleFin sync, social features, and admin endpoints.
共 1 个版本