This group of endpoints allows you to retrieve and manage budget data, including listing budgets and fetching individual budget details.
Budgets are organised in a hierarchy where a budget can have multiple members. Each member is associated with a user. Funds can be allocated at the budget level or at the member level, using the flag has_member_limits.

Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/budgets?offset=50&limit=50&is_deleted=false&budget_type=BUDGET&has_member_limits=false' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "count": 100, "next": "offset=50&limit=50", "previous": "offset=0&limit=50", "results": [ { … } ] }