> 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/findentitybyname.md).

# 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          삼성
```
