Skip to main content
GET
/
investors
/
{investor_id}
/
funding-sources
List funding sources for an investor
curl --request GET \
  --url https://api.bluumfinance.com/v1/investors/{investor_id}/funding-sources \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "object": "investor",
      "livemode": false,
      "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
      "created": 1747776000,
      "metadata": {},
      "bank_name": "<string>",
      "mask": "<string>",
      "provider_id": "<string>",
      "account_name": "<string>",
      "account_type": "<string>",
      "account_subtype": "<string>",
      "account_holder_name": "<string>",
      "account_number": "<string>",
      "routing_number": "<string>",
      "swift_code": "<string>",
      "iban": "<string>",
      "wire_routing_kind": "<string>",
      "bank_code": "<string>",
      "beneficiary_address": "<string>",
      "address_line_1": "<string>",
      "payout_country": "<string>",
      "payout_currency": "<string>",
      "payout_city": "<string>",
      "payout_region": "<string>",
      "payout_postal_code": "<string>",
      "wire_payout_complete": true,
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

investor_id
string
required

The prefixed public id of the investor (e.g. inv_…).

Query Parameters

type
enum<string>
default:all
Available options:
plaid,
manual,
all

Response

Funding sources retrieved successfully.

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required