---
title: "List fund requests"
method: GET
path: "/requests"
tags: ["Requests"]
---

# List fund requests

`GET /requests`

## Query parameters

- `page` integer
- `perPage` integer
- `status` union
  - string
  - string[]
- `currency` string[]
- `type` 'budget' | 'payment' | 'top_up' | 'telecom'
- `user` union
  - string
  - string[]
- `vendor` union
  - string
  - string[]
- `budget` union
  - string
  - string[]
- `category` union
  - string
  - string[]
- `search` string
- `from` string, date-time
- `to` string, date-time

## Response `200`

OK

- object
  - `message` string, required
  - `status` boolean, required
  - `error` boolean, required
  - `data` object
    - `requests` FundRequest[]
      - `code` string
      - `amount` integer — Minor units
      - `currency` string
      - `description` string, nullable
      - `note` string, nullable
      - `type` 'budget' | 'payment' | 'top_up' | 'telecom'
      - `status` string
      - `channel` string, nullable
      - `platform` string, nullable
      - `user` User
        - `code` string
        - `firstName` string
        - `lastName` string
        - `middleName` string, nullable
        - `email` string, email
        - `name` string — Display name
        - `status` string
        - `role` string, nullable
      - `vendor` Vendor — Supplier / payee
        - `code` string
        - `name` string
        - `email` string, email, nullable
        - `description` string, nullable
        - `type` 'business' | 'individual', nullable
        - `status` string
        - `categories` Category[]
          - `code` string
          - `name` string
          - `description` string, nullable
          - `slug` string, nullable
          - `status` string
          - `isSubCategory` boolean
          - `parent` Category — recursive
          - `children` Category[]
      - `budget` CodeRef — code + name
        - `code` string
        - `name` string
      - `sourceBudget` CodeRef — code + name
        - `code` string
        - `name` string
      - `balance` CodeRef — code + name
        - `code` string
        - `name` string
      - `card` object, nullable
        - `code` string
        - `name` string
        - `last_4` string, nullable
      - `category` Category — Expense category
        - `code` string
        - `name` string
        - `description` string, nullable
        - `slug` string, nullable
        - `status` string
        - `isSubCategory` boolean
        - `parent` Category — recursive
        - `children` Category[]
      - `created_at` string, date-time
      - `updated_at` string, date-time
    - `meta` PaginationMeta
      - `page` integer
      - `perPage` integer
      - `total` integer
      - `hasMore` boolean
      - `nextPage` integer, nullable

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.dev/bujeti/apis/bujeti-public-api.md) · [All operations](https://skmtc.dev/bujeti/apis/bujeti-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bujeti/bujeti-public-api/revisions/d2850fc5f576/schema)
