> For the complete documentation index, see [llms.txt](https://help.deepsearch.com/dp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.deepsearch.com/dp/api/func/company/company-search/findentitybyshareholdername.md).

# FindEntityByShareholderName

### Function specification

```
FindEntityByShareholderName(entity_type, shareholder_name,
                                date_from=None, date_to=None, last_only=False)
```

###

### Parameters

| Parameter         | Type                                  | Description                                                                |
| ----------------- | ------------------------------------- | -------------------------------------------------------------------------- |
| entity\_type      | string                                | 검색 대상이 되는 entity 의 타입을 명시합니다. 현재는 "Financial" 만 지원합니다.                     |
| shareholder\_name | <p>string or</p><p>list of string</p> | 검색하고자 하는 주주명을 입력합니다.                                                       |
| date\_from        | date                                  | 대상이 되는 주주명부 시작 시점을 설정합니다. 따로 지정이 없는 경우, 최신의 주주명부를 대상으로 합니다. ex)2010-1-1    |
| date\_to          | date                                  | 대상이 되는 주주명부 종료 시점을 설정합니다. 따로 지정이 없는 경우, 최신의 주주명부를 대상으로 합니다.  ex)2010-12-31 |
| last\_only        | boolean                               | 검색이 된 주주명부가 복수 시점일 경우, 가장 최신의 주주명부만을 사용할 것인지 지정합니다. 기본값은 False 입니다.        |

###

### Examples

```
> FindEntityByShareholderName("Financial","이건희",2010-01-01,2010-12-31,True)

...

date	symbol	entity_name	name	no_shares	ownership_percentage
2010-04-21	NICE:514983	해든건설	이건희	15	8.00
2010-06-04	NICE:153594	일조산업개발	이건희	29	15.40
2010-08-19	NICE:005169	아이피코리아	이건희	22	55.00
2010-12-31	KRX:005930	삼성전자	이건희	4,985	3.38
2010-12-31	KRX:018260	삼성에스디에스	이건희	9	0.01
2010-12-31	KRX:032830	삼성생명	이건희	41,519	20.76
2010-12-31	NICE:201495	세창테크	이건희	20	10.00
2010-12-31	NICE:610232	삼성물산	이건희	2,206	1.41

```

####


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.deepsearch.com/dp/api/func/company/company-search/findentitybyshareholdername.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
