한국투자증권 OpenAPI Python Wrapper - Korea Investment & Securities Trading API Client
Project description
KIS-Agent
한국투자증권 OpenAPI Python 래퍼 - Korea Investment & Securities Trading API Client
pip install kis-agent
CLI
pip install kis-agent 하면 kis 명령이 바로 설치됩니다.
kis price 005930 # 삼성전자 현재가
kis price 005930 --daily --days 5 # 일별 시세 5일
kis overseas NAS AAPL # AAPL 시세
kis overseas NAS AAPL --detail # PER/PBR/시총 포함
kis balance --holdings # 계좌 잔고 + 보유종목
kis orderbook 005930 # 호가 10호가
kis futures 101S03 # 선물 시세
kis trades # 당일 체결내역
kis trades --from 7d --pretty # 최근 7일 (사람 읽기용)
kis trades --from 30d --sell # 최근 30일 매도만
kis trades --from 3m --profit # 기간별 실현손익
kis query stock get_stock_price code=005930 # API 직접 호출
kis schema Stock # 타입 스키마 (LLM introspection)
- JSON 출력 (LLM 파싱 최적화),
--pretty로 사람 읽기용 - 한투 필드명 자동 변환:
stck_prpr→currentPrice,prdy_ctrt→changeRate - 휴장일/장외 시간 자동 감지 — 직전 영업일 기준 데이터 안내
주요 특징
- CLI 도구: 설치 즉시 터미널에서 시세 조회
- LLM Agent 연동: JSON 출력 + 스키마 탐색으로 AI 에이전트 도구로 활용
- 고성능: 지능형 캐싱으로 API 호출 80-95% 감소
- 안정성: 실측 기반 Rate Limiting (18 RPS / 900 RPM)
- 실시간: WebSocket을 통한 실시간 데이터 스트리밍
- 국내시장: KOSPI, KOSDAQ, NXT(넥스트) 시장 지원
- 해외시장: 미국, 일본, 중국, 홍콩, 베트남 9개 거래소 지원
- 선물옵션: 국내/해외 선물옵션 거래 지원
- 타입 안정성: 96개 TypedDict 응답 모델, 100% 타입힌팅
설치
pip install kis-agent
WebSocket, aiohttp, openpyxl은 기본 의존성에 포함되어 별도 설치가 불필요합니다.
사전 준비
- 한국투자증권 API 포털에서 API 신청
- APP_KEY와 APP_SECRET 발급
- 계좌번호(CANO)와 계좌상품코드(ACNT_PRDT_CD) 확인
.env파일 설정:
KIS_APP_KEY=발급받은_앱키
KIS_SECRET=발급받은_시크릿 # 또는 KIS_APP_SECRET
KIS_ACCOUNT_NO=계좌번호
KIS_ACCOUNT_CODE=01
Python API
빠른 시작
from kis_agent import Agent
import os
agent = Agent(
app_key=os.environ['KIS_APP_KEY'],
app_secret=os.environ['KIS_APP_SECRET'],
account_no=os.environ['KIS_ACCOUNT_NO'],
account_code=os.environ.get('KIS_ACCOUNT_CODE', '01'),
)
# 주식 현재가 조회
price = agent.get_stock_price("005930") # 삼성전자
print(f"현재가: {price['output']['stck_prpr']}원")
# 계좌 잔고 조회
balance = agent.get_account_balance()
# 일봉 데이터 조회
daily = agent.inquire_daily_itemchartprice(
"005930",
start_date="20250101",
end_date="20251231"
)
국내 주식 거래
# 현금 매수 (지정가)
result = agent.order_stock_cash("buy", "005930", "00", "1", "70000")
# 현금 매수 (시장가)
result = agent.order_stock_cash("buy", "005930", "03", "1", "0")
# 주문 가능 수량 조회
inquiry = agent.inquire_order_psbl("005930", "70000")
print(f"주문가능수량: {inquiry['output']['max_buy_qty']}")
# 주문 정정/취소
result = agent.order_rvsecncl(org_order_no, qty, price, order_type, cncl_type)
해외 주식 거래
# 시세 조회
apple = agent.overseas.get_price(excd="NAS", symb="AAPL")
print(f"AAPL 현재가: ${apple['output']['last']}")
# 일봉/분봉
tesla_daily = agent.overseas.get_daily_price(excd="NAS", symb="TSLA")
tesla_minute = agent.overseas.get_minute_price(excd="NYS", symb="TSLA", interval=5)
# 매수/매도 주문
result = agent.overseas.buy_order(excd="NAS", symb="AAPL", qty="10", price="150.00")
result = agent.overseas.sell_order(excd="NYS", symb="MSFT", qty="20", price="350.00")
# 정정/취소
agent.overseas.modify_order(excd="NAS", order_no="...", qty="15", price="155.00")
agent.overseas.cancel_order(excd="NAS", order_no="...")
지원 거래소: NAS (NASDAQ), NYS (NYSE), AMS (AMEX), TSE (도쿄), SHS (상해), SZS (심천), HKS (홍콩), HSX (호치민), HNX (하노이)
선물/옵션 거래
# 국내 선물
futures_price = agent.futures.get_price("101S03")
result = agent.futures.buy_order(code="101S03", qty=1, price=350.00)
# 해외 선물
overseas_futures = agent.overseas_futures.get_price(excd="CME", symb="ESH5")
# 잔고
futures_balance = agent.futures.get_balance()
실시간 데이터 (WebSocket)
ws_client = agent.websocket(
stock_codes=["005930", "035420"],
enable_index=True,
enable_program_trading=True,
enable_ask_bid=True
)
import asyncio
asyncio.run(ws_client.start())
분석 기능
investor_trend = agent.get_stock_investor("005930") # 투자자별 매매동향
program_trade = agent.get_program_trade_by_stock("005930", "20250101") # 프로그램 매매
member_trade = agent.get_stock_member("005930") # 증권사별 매매동향
support_resistance = agent.calculate_support_resistance("005930") # 지지/저항선
장기 데이터 조회
API의 100건 제한을 자동으로 우회하여 전체 기간 데이터 수집:
result = agent.get_daily_price_all(
code="005930",
start_date="20200102",
end_date="20201230",
period="D",
org_adj_prc="1"
)
print(f"총 {len(result['output2'])}건 수집") # 248건 (100건 제한 우회!)
print(f"API 호출: {result['_pagination_info']['total_calls']}회")
성능
- 캐시 적중률: 80-95% (API 호출 대폭 감소)
- Rate Limiting: 18 RPS / 900 RPM (실측 안정 기준)
- 응답 시간: 평균 50ms 이하 (캐시 적중 시)
- 동시 연결: 멀티스레드 안전성 보장
개발
# 개발 의존성 설치
pip install -e ".[dev]"
# 린팅
ruff check kis_agent tests
ruff format kis_agent tests
# 테스트
pytest tests/ -v --cov=kis_agent
API 레퍼런스
계좌
get_account_balance()/inquire_order_psbl()/inquire_credit_order_psbl()
주문
order_stock_cash()/order_stock_credit()/order_rvsecncl()/inquire_psbl_rvsecncl()
시세
get_stock_price()/get_daily_price()/get_minute_price()/get_orderbook()
분석
get_stock_investor()/get_stock_member()/get_program_trade_by_stock()/calculate_support_resistance()
해외주식 (agent.overseas.*)
get_price()/get_daily_price()/get_balance()/buy_order()/sell_order()
선물옵션 (agent.futures.*)
get_price()/get_balance()/buy_order()/sell_order()
CLI (kis)
kis price <code>/kis balance/kis orderbook <code>/kis overseas <excd> <symb>/kis futures <code>/kis query <domain> <method>/kis schema [type]
라이센스
MIT License
기여
버그 리포트, 기능 제안, Pull Request를 환영합니다.
링크
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kis_agent-1.5.1.tar.gz.
File metadata
- Download URL: kis_agent-1.5.1.tar.gz
- Upload date:
- Size: 267.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b72f42e6dad6162821c030bd8b372aa5dbe769bbe65a918eb7b8c1e51b397038
|
|
| MD5 |
0b719959fe8d74515cb14ee01043f9f7
|
|
| BLAKE2b-256 |
6fb083781996ffc8ba76ce118fb1d530c5984e630db234a2a77fc5fd0b773ed7
|
File details
Details for the file kis_agent-1.5.1-py3-none-any.whl.
File metadata
- Download URL: kis_agent-1.5.1-py3-none-any.whl
- Upload date:
- Size: 292.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91e95f6c846be18c93a7e7bf0e4856b0704fa5113c7094b203d6b5ac2fd5bee3
|
|
| MD5 |
447e5e1e3d7f75deeb8622a32ac44a73
|
|
| BLAKE2b-256 |
9834854ce444f976176750304ba7d65ae6d774c30ebe4d4a241ec0c4b891eba3
|