---
title: "List Payment Sources"
method: GET
path: "/v1/payment_sources"
tags: ["paymentSources"]
---

# List Payment Sources

`GET /v1/payment_sources`

List payment sources for your Chariot account.

Payment Sources represent segregated addresses for incoming deposits.
In practice, this can be separate electronic bank addresses (account + routing numbers) or physical mailing addresses (lockboxes).
Payment Sources make it easy to independently manage and consolidate incoming payments and donations from different sources
which in turn makes reconciliation of money and data seamless.
Every Payment Source belongs to a specific Financial Account and can be thought of as a gateway/door for money to flow into the Financial Account.
Payment Sources are not separately ledgered which means you can't get the balance of a Payment Source separately from the Financial Account.

Payment Sources should be setup and managed through the Chariot Dashboard.

## Query parameters

- `limit` integer
- `page_token` string

## Response `200`

The response for PaymentSources.list

- object
  - `results` PaymentSource[]
    - `id` string — The unique identifier for the payment source
    - `financial_account_id` string — The unique identifier for the financial account that the payment source belongs to
    - `name` string — The name of the payment source
    - `source_type` 'manual' | 'portal' | 'lockbox' | 'grantmaker' — The type of the payment source
    - `financial_address` FinancialAddress — A subhash containing information about the electronic bank address payment rail details. This is only available for manual and connected_account payment sources.
      - `ach` AchAddress — A subhash containing information about the electronic bank address payment rail details.
        - `account_number` string, required — The account number of that uniquely identifies the account at the institution
        - `routing_number` string, required — The American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account.
    - `lockbox` Lockbox — A Lockbox represents a physical mailing address operated by a third-party provider (e.g., Stable, CDS) that receives physical mail and scans checks on Chariot's behalf. Lockboxes are the source of Mail Items, which in turn produce Donations and Deposits. Lockboxes are provisioned and managed by Chariot in partnership with the provider.
      - `id` string, required — The unique identifier for the lockbox.
      - `address` PostalAddress — A postal address is a mailing address where physical mail can be received. Postal addresses can be used to receive paper checks.
        - `city` string, required — City, district, suburb, town, or village.
        - `country` string, required — Two-letter country code (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
        - `line1` string, required — Address line 1 (e.g. street, PO Box, or company name)
        - `line2` string — Address line 2 (e.g. apartment, suite, unit, or building)
        - `postal_code` string, required — ZIP or postal code
        - `state` string, required — State, county, province, or region
      - `created_at` string, date-time, required — The date and time when the lockbox was created.
      - `updated_at` string, date-time — The date and time when the lockbox was last updated.
    - `created_at` string, date-time — The date and time when the payment source was created
    - `updated_at` string, date-time — The date and time when the payment source was last updated
  - `next_page_token` string — A cursor token to use to retrieve the next page of results by making another API call to the same endpoint with the same parameters (only changing the pageToken). If specified, then more results exist on the server that were not returned, otherwise no more results exist on the server.

## Other responses

- `400` — The request is invalid or contains invalid parameters
- `401` — Unauthorized. The request is missing the security (OAuth2 Bearer token) requirements and the server is unable to verify the identify of the caller.
- `403` — Access denied
- `500` — Internal Server Error

---

[API](https://skmtc.net/chariot-giving/apis/specs.md) · [All operations](https://skmtc.net/chariot-giving/apis/specs/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chariot-giving/specs/revisions/8446023e02fb/schema)
