Skip to main content
GET
/
portfolios
/
{portfolioId}
/
strategies
cURL
curl --request GET \
  --url https://lighthouse.one/v1/api/portfolios/{portfolioId}/strategies \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "01JSGMSKSS5RBJ976GR1PTZ3V3",
    "name": "ETH Staking",
    "startsAt": "2025-01-15T00:00:00.000+00:00",
    "endsAt": null,
    "status": "ONGOING",
    "description": "Diversified ETH staking across protocols",
    "accountingCurrency": "USD",
    "positionsValue": 125430.5,
    "fundingValue": 100000,
    "pnlValue": 25430.5
  },
  {
    "id": "01JSEBE0WAGS270QMW1S0YWVJZ",
    "name": "BTC Accumulation",
    "startsAt": "2025-03-01T00:00:00.000+00:00",
    "endsAt": "2025-06-01T00:00:00.000+00:00",
    "status": "COMPLETED",
    "accountingCurrency": "BTC",
    "positionsValue": 2.15,
    "fundingValue": 2,
    "pnlValue": 0.15
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

portfolioId
string
required

A unique identifier for the portfolio. The portfolioId can be obtained from the Lighthouse API keys settings.

Query Parameters

status
enum<string>

Filter strategies by their current status.

Available options:
PLANNED,
ONGOING,
COMPLETED
accountingCurrency
enum<string>

Filter strategies by their accounting currency.

Available options:
USD,
ETH,
BTC

Response

200 - application/json

Strategies response

id
string
required

The unique identifier of the strategy

name
string
required

The name of the strategy

status
enum<string>
required

The current status of the strategy, computed from start and end dates

Available options:
PLANNED,
ONGOING,
COMPLETED
accountingCurrency
enum<string>
required

The accounting currency used for the strategy values

Available options:
USD,
ETH,
BTC
positionsValue
number
required

The current value of the strategy positions in the accounting currency

fundingValue
number
required

The total funding deployed into the strategy in the accounting currency

pnlValue
number
required

The profit and loss of the strategy in the accounting currency

startsAt
string | null

The start date of the strategy in ISO 8601 format

endsAt
string | null

The end date of the strategy in ISO 8601 format

description
string

An optional description of the strategy