Skip to main content
GET
/
v1
/
stocks
/
institution-holder
Get Company Institution Holders Info
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/institution-holder \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "avg_price_paid": 17.65,
      "calendar_end_date": "2014-06-30",
      "change_in_market_value": 5250000,
      "change_in_market_value_percentage": 24.3056,
      "change_in_ownership": 0.0007,
      "change_in_ownership_percentage": 16.3377,
      "change_in_performance": -939186,
      "change_in_shares_number": 176300,
      "change_in_shares_number_percentage": 16.3399,
      "change_in_weight": 0.0066,
      "change_in_weight_percentage": 17.177,
      "cik": "0001126328",
      "filing_date": "2014-08-12",
      "first_added": "2005-12-31",
      "holding_period": 35,
      "industry_title": "SEMICONDUCTORS & RELATED DEVICES",
      "investment_discretion": "DFND",
      "investor_name": "PRINCIPAL FINANCIAL GROUP INC",
      "is_counted_for_performance": true,
      "is_new": false,
      "is_sold_out": false,
      "last_market_value": 21600000,
      "last_ownership": 0.0042,
      "last_performance": 2417356,
      "last_shares_number": 1078956,
      "last_weight": 0.0385,
      "market_value": 26850000,
      "observed_at": 1407902400,
      "ownership": 0.0048,
      "performance": 1478169,
      "performance_percentage": 6.8434,
      "put_call_share": "Share",
      "quarter_end_price": 21.39,
      "security_cusip": "874039100",
      "security_name": "TAIWAN SEMICONDUCTOR MFG LTD",
      "shares_number": 1255256,
      "shares_type": "SH",
      "symbol": "TSM",
      "type_of_security": "SPONSORED ADR",
      "weight": 0.0452
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string
required

Stock symbol (uppercase, e.g., TSM, AAPL, MSFT)

limit
integer

Limit number of results (default: 50, max: 5000)

Required range: 1 <= x <= 5000
start_time
integer
required

Start time (Unix timestamp, required)

end_time
integer
required

End time (Unix timestamp, required)

time_type
enum<string>
required

Time type for filtering: 'CALENDAR_END_DATE' uses Date field, 'FILING_DATE' uses FilingDate field, 'OBSERVED_AT' uses publish_time field

Available options:
CALENDAR_END_DATE,
FILING_DATE,
OBSERVED_AT

Response

Successfully retrieved institution holder data

data
object[]
error
object
pagination
any
request_id
string
success
boolean