Skip to content

Insider Holders

GET /api/v1.0/quote/{symbol}/shareholders/insider-holders

Get the insider (directors / executives) holding list and summary statistics for a company.

Parameters

NameTypeInRequiredDescription
symbolstringpathyesSymbol code, e.g. US.AAPL.
next_keystringquerynoPagination cursor; leave empty for the first page.
limitintquerynoPage size. Default 10, max 30.

Request Example

bash
curl "https://webapi.moomoo.com/api/v1.0/quote/US.AAPL/shareholders/insider-holders?limit=2" | jq

Response Fields

FieldTypeDescription
holder_idintInsider ID.
namestringInsider name.
titlestringPosition title.
holder_quantityintNumber of shares held.
holder_pctfloatHolding percentage (%).
insider_total_countintTotal number of insiders.
insider_bought_countintNumber of insiders with buy transactions.
insider_sold_countintNumber of insiders with sell transactions.
pagination.totalintTotal insider record count.
pagination.has_moreboolWhether there is a next page.
pagination.next_keystringNext page cursor; "-1" when no more pages.

Supported Markets

  • Markets/categories: Primarily US equities; also includes JP / AU / CA equities; ETF, HK / A-shares and other markets without insider disclosure requirements return empty lists.
  • Pagination limit: max 30.

Error Codes

ret_codeerror.codeTrigger ConditionSuggested Action
0Success (including empty list)
-3invalid_parameterlimit > 30 / invalid symbol formatFix parameters as prompted
-7invalid_symbolSymbol cannot be resolvedVerify symbol and supported markets

Response Example

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "insiders": [
      {
        "holder_id": 234085,
        "name": "Arthur Levinson",
        "title": "Independent Non-Executive Chairman",
        "holder_quantity": 3755576,
        "holder_pct": 0.025,
        "insider_total_count": 17,
        "insider_bought_count": 11,
        "insider_sold_count": 7
      },
      {
        "holder_id": 169600,
        "name": "Timothy Cook",
        "title": "Chief Executive Officer",
        "holder_quantity": 3280418,
        "holder_pct": 0.022,
        "insider_total_count": 17,
        "insider_bought_count": 11,
        "insider_sold_count": 7
      }
    ]
  },
  "pagination": { "has_more": true, "total": 17, "next_key": "10" }
}