Ranking of Active Institutional Investors by Type
GET/v2/center/active/investor/list
This retrieves the rankings of active investment institutions by various types.
Parameter Description
searchType
PROFIT_1Y
: 1 Year Return RatePROFIT_VOLATILITY
: Return VolatilityHOLDING_PERIOD
: Holding Period (days)TURNOVER_RATE
: Portfolio Turnover Rate
sort
rank
- Example:
rank,asc
orrank,desc
Example Request Query string
// Rankings of active investment institutions by 1 year return rate
https://oapi.waiker.ai/v2/center/active/investor/list?page=0&size=5&searchType=PROFIT_1Y
// Rankings of active investment institutions by 1 year return volatility
https://oapi.waiker.ai/v2/center/active/investor/list?page=0&size=5&searchType=PROFIT_VOLATILITY
// Rankings of active investment institutions by holding period
https://oapi.waiker.ai/v2/center/active/investor/list?page=0&size=5&searchType=HOLDING_PERIOD
// Rankings of active investment institutions by portfolio turnover rate
https://oapi.waiker.ai/v2/center/active/investor/list?page=0&size=5&searchType=TURNOVER_RATE
Request
Query Parameters
Possible values: [PROFIT_1Y
, PROFIT_VOLATILITY
, HOLDING_PERIOD
, TURNOVER_RATE
]
Search filters. Possible values: PROFIT_1Y (1-year profit), PROFIT_VOLATILITY (profit volatility), HOLDING_PERIOD (holding period), TURNOVER_RATE (portfolio turnover rate)
Default value: 0
Page number (default: 0)
Default value: 5
Page size (default: 5, maximum: 5)
Default value: rank,asc
List sorting criteria (default: rank,asc)
Header Parameters
Default value: KR
Country Code (KR or US)
Default value: KRW
Currency Code (KRW or USD)
Default value: EN
Language Code (KO or EN)
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
Company Name
Representative Name
Default value: 0
Number of Holdings
Default value: 0
1 Year Return
Default value: 0
Profit Volatility
Default value: 0
Holding Period (days)
Default value: 0
Portfolio Turnover Rate
CIK (Unique Investor ID)
Default value: 0
Current Rank
Default value: 0
Previous Rank
Page number (default: 0)
Page size (default: 5)
Total number of pages
Total number of items
Response code
Response status code
Response Message
Response Timestamp
{
"data": [
{
"companyName": "string",
"representativeName": "string",
"numberOfHoldings": 0,
"profit1y": 0,
"profitVolatility": 0,
"holdingPeriod": 0,
"turnoverRate": 0,
"cik": "string",
"rank": 0,
"previousRank": 0
}
],
"page": 0,
"size": 0,
"totalPage": 0,
"totalCount": 0,
"code": "string",
"status": 0,
"message": "string",
"timestamp": "string"
}