BusinessInsiderClient

Business Insider Markets 클라이언트

ISIN(International Securities Identification Number)을 기반으로 종목 심볼과 정보를 조회하는 클라이언트입니다.

사용 예시

val bi = BusinessInsiderClient.create()
val result = bi.searchIsin("US0378331005") // Apple Inc
println(result.symbol) // "AAPL"
println(result.name) // "Apple Inc"
bi.close()

ISIN 형식

  • 12자리 영숫자: 국가코드(2) + 식별자(9) + 체크섬(1)

  • 예시:

  • US0378331005: Apple Inc (미국)

  • KR7005930003: 삼성전자 (한국)

  • GB0005405286: HSBC Holdings (영국)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun close()

클라이언트 리소스 해제

Link copied to clipboard
suspend fun searchIsin(isin: String): IsinSearchResult

ISIN으로 종목 정보 검색