---
title: "List Programs"
method: GET
path: "/programs"
---

# List Programs

`GET /programs`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.

## Response `200`

Program List

- ProgramList — A list of Program objects.
  - `data` Program[], required — The contents of the list.
    - `bank` 'core_bank' | 'first_internet_bank' | 'grasshopper_bank' | 'increase_bank', required — The Bank the Program is with.
    - `billing_account_id` string, nullable, required — The Program billing account.
    - `created_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program was created.
    - `default_digital_card_profile_id` string, nullable, required — The default configuration for digital cards attached to this Program.
    - `id` string, required — The Program identifier.
    - `interest_rate` string, required — The Interest Rate currently being earned on the accounts in this program, as a string containing a decimal number. For example, a 1% interest rate would be represented as "0.01".
    - `lending` object, nullable, required — The lending details for the program.
      - `maximum_extendable_credit` integer, required — The maximum extendable credit of the program.
    - `name` string, required — The name of the Program.
    - `type` 'program', required — A constant representing the object's type. For this resource it will always be `program`.
    - `updated_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program was last updated.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.net/increase/apis/increase-api-2.md) · [All operations](https://skmtc.net/increase/apis/increase-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/increase/increase-api-2/versions/e968bcd4dcf9/schema)
