# FindEntityByName

### Function specification

```
FindEntityByName(entity_type, pattern, count=10000)
```

###

### Parameters

| Parameter    | Type                                  | Description                                            |
| ------------ | ------------------------------------- | ------------------------------------------------------ |
| entity\_type | string                                | 검색 대상이 되는 entity 의 타입을 명시합니다. 현재는 "Financial" 만 지원합니다. |
| pattern      | <p>string or</p><p>list of string</p> | 검색 하고자 하는 패턴을 지정합니다. 와일드카드 (\*) 사용이 가능합니다.             |
| count        | integer                               | 검색 결과에 포함되는 기업의 갯수를 제한합니다. 0 일 경우 전체 목록을 리턴합니다.        |

### Examples

```
> FindEntityByName("Financial", "삼성*")

...

            entity_name
symbol                 
KRX:000810         삼성화재
KRX:001360         삼성제약
KRX:005930         삼성전자
KRX:006400        삼성SDI
KRX:006660         삼성공조
...                 ...
NICE:527988        삼성금속
NICE:528387       삼성고주파
NICE:528418      삼성화물운수
NICE:528557    삼성전자벧엘상사
NICE:529440          삼성
```


---

# Agent Instructions: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
