---
title: "List linked bank accounts"
method: GET
path: "/v1/linked_bank_accounts"
tags: ["LinkedBankAccounts"]
---

# List linked bank accounts

`GET /v1/linked_bank_accounts`

Returns a list of bank accounts associated with a specific Straddle account. The linked bank accounts are returned sorted by creation date, with the most recently created appearing first. This endpoint supports pagination to handle accounts with multiple linked bank accounts.

## Query parameters

- `account_id` string, uuid — The unique identifier of the related account.
- `page_number` integer — Results page number. Starts at page 1. Default value: 1
- `page_size` integer — Page size. Default value: 100. Max value: 1000
- `sort_by` string — Sort By. Default value: 'id'.
- `sort_order` 'asc' | 'desc' — Sort Order. Default value: 'asc'.
- `level` 'account' | 'platform'
- `purpose` 'charges' | 'payouts' | 'billing' — The purpose of the linked bank accounts to return. Possible values: 'charges', 'payouts', 'billing'.
- `status` 'created' | 'onboarding' | 'active' | 'rejected' | 'inactive' | 'canceled' — The status of the linked bank accounts to return. Possible values: 'created', 'onboarding', 'active', 'inactive', 'rejected'.

## Headers

- `request-id` string
- `correlation-id` string

## Response `200`

OK

- PagedResponseOfLinkedBankAccountV1
  - `meta` PagedResponseMetadata, required — Metadata about the API request, including an identifier, timestamp, and pagination details.
    - `api_request_id` string, uuid, required — Unique identifier for this API request, useful for troubleshooting.
    - `api_request_timestamp` string, date-time, required — Timestamp for this API request, useful for troubleshooting.
    - `total_items` integer, required — Total number of items returned in this response.
    - `page_number` integer, required — Page number for paginated results.
    - `page_size` integer, required — Number of items per page in this response.
    - `max_page_size` integer, required — Maximum allowed page size for this endpoint.
    - `sort_by` string, required — The field that the results were sorted by.
    - `sort_order` 'asc' | 'desc', required
    - `total_pages` integer, required — The number of pages available.
  - `response_type` 'object' | 'array' | 'error' | 'none', required — Indicates the structure of the returned content. - "object" means the `data` field contains a single JSON object. - "array" means the `data` field contains an array of objects. - "error" means the `data` field contains an error object with details of the issue. - "none" means no data is returned.
  - `data` LinkedBankAccountV1[], required
    - `id` string, uuid, required — Unique identifier for the linked bank account.
    - `account_id` string, uuid, nullable, required — The unique identifier of the Straddle account related to this bank account.
    - `status` 'created' | 'onboarding' | 'active' | 'rejected' | 'inactive' | 'canceled', required — The current status of the linked bank account.
    - `status_detail` StatusDetailOfLinkedBankAccountStatusDetailEnum, required
      - `reason` 'unverified' | 'in_review' | 'pending' | 'stuck' | 'verified' | 'failed_verification' | 'disabled' | 'new', required — A machine-readable identifier for the specific status, useful for programmatic handling.
      - `source` 'watchtower', required — Identifies the origin of the status change (e.g., `watchtower`). This helps in tracking the cause of status updates.
      - `code` string, required — A machine-readable code for the specific status, useful for programmatic handling.
      - `message` string, required — A human-readable message describing the current status.
    - `bank_account` BankAccountV1, required
      - `institution_name` string, required
      - `account_holder` string, required
      - `routing_number` string, required
      - `account_mask` string, required
    - `metadata` object, nullable — Up to 20 additional user-defined key-value pairs. Useful for storing additional information about the linked bank account in a structured format.
    - `created_at` string, date-time, required — Timestamp of when the bank account object was created.
    - `updated_at` string, date-time, required — Timestamp of the most recent update to the linked bank account.
    - `platform_id` string, uuid, nullable — The unique identifier of the Straddle Platform relatd to this bank account.
    - `purposes` string[], required — The purposes for the linked bank account.
    - `description` string, nullable — Optional description for the bank account.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Failed
- `500` — Server Error

---

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