Skip to main content
GET
/
investors
/
{investor_id}
/
api-keys
List an investor's API keys
curl --request GET \
  --url https://api.bluumfinance.com/v1/investors/{investor_id}/api-keys \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "object": "api_key",
      "livemode": false,
      "id": "apk_2ahq810t9rgmwgncgcawcm5400",
      "created": 1747776000,
      "metadata": {},
      "account_id": "inv_2ahq810t9rgmwgncgcawcm5400",
      "name": "<string>",
      "public_key": "<string>",
      "expires_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_…).

Response

API keys 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