Banking/open banking
youneedabudget.com
YNAB API Endpoints sandbox and mock API
Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com Writes persist, data moves on a schedule and every change can fire a signed webhook.
- Operations
- 31
- Collections
- -
- Event types
- -
example request
curl https://your-youneedabudget.slurry.io/v1/budgets \
-H "Authorization: Bearer slurry_sim_..."Your simulation gets its own hostname, key and IP allow-list. Built from API version 1.0.0.
What gets simulated
Collections, relationships and state machines are worked out from the spec when you start the simulation.
- State. Creates, updates and deletes persist and show up in later reads.
- Behaviour. Records move through their states on a schedule you control, and you can fast-forward up to 30 days.
- Webhooks. Every change emits a signed, retried event.
- Failure. Per-endpoint errors, latency and chaos rules, on demand.
Operations
First 12 of 31.
- GET/budgets
- GET/budgets/{budget_id}
- GET/budgets/{budget_id}/accounts
- POST/budgets/{budget_id}/accounts
- GET/budgets/{budget_id}/accounts/{account_id}
- GET/budgets/{budget_id}/accounts/{account_id}/transactions
- GET/budgets/{budget_id}/categories
- GET/budgets/{budget_id}/categories/{category_id}
- GET/budgets/{budget_id}/categories/{category_id}/transactions
- GET/budgets/{budget_id}/months
- GET/budgets/{budget_id}/months/{month}
- GET/budgets/{budget_id}/months/{month}/categories/{category_id}