---
title: "Get budget transactions"
method: GET
path: "/api/v1/budgets/{id}/transactions"
tags: ["Finance Management.Budgets", "ENTERPRISE"]
---

# Get budget transactions

`GET /api/v1/budgets/{id}/transactions`

List all transactions for the specified budget within the start and end date.

## Path parameters

- `id` string, required

## Query parameters

- `start` integer, required
- `end` integer, required

## Response `200`

A Successful response

- ListBudgetTransactionsResponse
  - `transactions` BudgetTransaction[] — List of transactions for a budget.
    - `accountId` string — The ID of the account this transaction belongs to.
    - `amount` Amount, required
      - `currencyCode` string, required — The ISO 4217 currency code of the amount
      - `scale` integer, required — The scale of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
      - `unscaledValue` integer, required — The unscaled value of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
    - `categoryCode` string — Category code.
    - `date` string, date-time — Date of the transaction expressed as UTC epoch timestamp in milliseconds.
    - `description` string — Description of the transaction.
    - `dispensableAmount` Amount, required
      - `currencyCode` string, required — The ISO 4217 currency code of the amount
      - `scale` integer, required — The scale of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
      - `unscaledValue` integer, required — The unscaled value of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
    - `id` string — The ID of the transaction.
    - `pending` boolean — Indicates if the transaction has state pending or not.

## Other responses

- `401` — If the user is not authorized.
- `404` — Budget not found
- `500` — For any unspecified error

---

[API](https://skmtc.net/tink/apis/tink-api.md) · [All operations](https://skmtc.net/tink/apis/tink-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tink/tink-api/revisions/23d8982b533d/schema)
