Skip to main content
GET
/
budgets
Get list of budgets
curl --request GET \
  --url https://business.bfinance.app/external/api/budgets \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "budgets": [
      {
        "id": "<string>",
        "label": "<string>",
        "balance": {
          "currency": "USD",
          "value": 100.5
        }
      }
    ],
    "page": 1,
    "limit": 10
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Query Parameters

page
integer
default:1

Page number for pagination

limit
integer
default:10

Number of items per page

Response

Successfully retrieved budgets list

status
string
Example:

"success"

data
object