728x90
타법인 출자현황 API 코드를 작성해보자.
import json
import pandas as pd
import requests
def get_corporate_investment(api_key, code, year, report_code):
fullUrl = 'https://opendart.fss.or.kr/api/otrCprInvstmntSttus.json?crtfc_key=%s&corp_code=%s&' \
'bsns_year=%s&reprt_code=%s' % (api_key, code, year, report_code)
response = requests.get(fullUrl, headers={'User-Agent': 'Mozilla/5.0'})
result = response.text
result = json.loads(result)
if result['status'] == '000':
data = pd.DataFrame(result['list'])
return data
if __name__ == '__main__':
api_key ='*'
code = '00126380'
year = '2018'
report_code = '11011'
corporate_investment = get_corporate_investment(api_key, code, year, report_code)
print(corporate_investment)
결과 값
rcept_no ... recent_bsns_year_fnnr_sttus_thstrm_ntpf
0 20190401004781 ... -
1 20190401004781 ... -
728x90
'Data Science > Data Collection' 카테고리의 다른 글
[04. 금융감독원 API] 017. 상장기업 재무정보 – 다중회사 주요계정 (0) | 2020.02.28 |
---|---|
[04. 금융감독원 API] 016. 상장기업 재무정보 – 단일회사 주요계정 (0) | 2020.02.17 |
[04. 금융감독원 API] 014. 사업보고서 주요정보 – 개인별 보수지급 금액(5억이상 상위5인) (0) | 2020.02.14 |
[04. 금융감독원 API] 013. 사업보고서 주요정보 – 이사ㆍ감사 전체의 보수현황 (0) | 2020.02.14 |
[04. 금융감독원 API] 012. 사업보고서 주요정보 – 이사ㆍ감사의 개인별 보수현황 (0) | 2020.02.14 |