Skip to Content

Shareholder Detail

Get holding history and trade details for a specific shareholder. The object_id comes from the shareholder_top response.

CLI
longbridge shareholder AAPL.US --object-id 19463
longbridge shareholder 700.HK --object-id 20181

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESSecurity symbol, e.g. AAPL.US
object_idintegerYESShareholder ID from shareholder_top object_id field

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "name": "The Vanguard Group, Inc.",
    "title": "",
    "avatar": "",
    "owner_source": "Institution",
    "holding_periods": [],
    "holding_details": [],
    "holding_summary": [],
    "trading_periods": ["Past 1 Month", "Past 3 Months", "Past 1 Year", "Past 3 Years"],
    "tradings": [
      {
        "period": "Past 1 Month",
        "accum_buy": "8500000.00",
        "accum_sell": "2687264.00",
        "net_buy": "5812736.00",
        "trading_details": [
          {
            "trading_date": "2025-12-18",
            "trading_shares": "5200000",
            "trading_price": "248.12",
            "trading_type": "Buy"
          }
        ]
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200SuccessShareholderDetailResponse
400Bad requestNone

Schemas

ShareholderDetailResponse

NameTypeRequiredDescription
namestringfalseShareholder name
titlestringfalseShareholder title / type
avatarstringfalseAvatar URL
owner_sourcestringfalseShareholder type: Company, Institution, Person, Insider
holding_periodsstring[]falseAvailable holding periods
holding_detailsobject[]falseHolding detail records
holding_summaryobject[]falseHolding summary records
trading_periodsstring[]falseAvailable trading periods (e.g. Past 1 Month, Past 3 Months)
tradingsobject[]falseTrade aggregates per period
∟ periodstringfalsePeriod label (e.g. Past 1 Month)
∟ accum_buystringfalseCumulative shares bought in this period
∟ accum_sellstringfalseCumulative shares sold in this period
∟ net_buystringfalseNet shares bought (buy minus sell) in this period
∟ trading_detailsobject[]falseIndividual transactions within the period
∟ ∟ trading_datestringfalseTrade date
∟ ∟ trading_sharesstringfalseNumber of shares traded
∟ ∟ trading_pricestringfalseTrade price
∟ ∟ trading_typestringfalseTrade direction: Buy or Sell

Note: Some fields return an empty string or empty array when data is unavailable.