opendart-fss 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,821 @@
1
+ """DS002 정기보고서 주요정보 API."""
2
+
3
+ from opendart_fss.api.base import BaseAPI
4
+ from opendart_fss.models.report import (
5
+ AuditServiceContract,
6
+ AuditServiceContractListResponse,
7
+ AuditorOpinion,
8
+ AuditorOpinionListResponse,
9
+ CommercialPaperBalance,
10
+ CommercialPaperBalanceListResponse,
11
+ ContingentCapitalBalance,
12
+ ContingentCapitalBalanceListResponse,
13
+ CorporateBondBalance,
14
+ CorporateBondBalanceListResponse,
15
+ DebtSecuritiesIssuance,
16
+ DebtSecuritiesIssuanceListResponse,
17
+ DirectorCompensation,
18
+ DirectorCompensationApproval,
19
+ DirectorCompensationApprovalListResponse,
20
+ DirectorCompensationByType,
21
+ DirectorCompensationByTypeListResponse,
22
+ DirectorCompensationListResponse,
23
+ DirectorIndividualCompensation,
24
+ DirectorIndividualCompensationListResponse,
25
+ DividendInfo,
26
+ DividendInfoListResponse,
27
+ Employee,
28
+ EmployeeListResponse,
29
+ Executive,
30
+ ExecutiveListResponse,
31
+ HybridSecuritiesBalance,
32
+ HybridSecuritiesBalanceListResponse,
33
+ IndividualCompensation,
34
+ IndividualCompensationListResponse,
35
+ LargestShareholder,
36
+ LargestShareholderChange,
37
+ LargestShareholderChangeListResponse,
38
+ LargestShareholderListResponse,
39
+ MinorityShareholder,
40
+ MinorityShareholderListResponse,
41
+ NonAuditServiceContract,
42
+ NonAuditServiceContractListResponse,
43
+ OtherCorpInvestment,
44
+ OtherCorpInvestmentListResponse,
45
+ OutsideDirector,
46
+ OutsideDirectorListResponse,
47
+ PrivatePlacementFundUsage,
48
+ PrivatePlacementFundUsageListResponse,
49
+ PublicOfferingFundUsage,
50
+ PublicOfferingFundUsageListResponse,
51
+ ShortTermBondBalance,
52
+ ShortTermBondBalanceListResponse,
53
+ StockChange,
54
+ StockChangeListResponse,
55
+ TotalStockQuantity,
56
+ TotalStockQuantityListResponse,
57
+ TreasuryStock,
58
+ TreasuryStockListResponse,
59
+ UnregisteredExecutiveCompensation,
60
+ UnregisteredExecutiveCompensationListResponse,
61
+ )
62
+
63
+
64
+ class ReportAPI(BaseAPI):
65
+ """정기보고서 주요정보 API (DS002)."""
66
+
67
+ async def get_stock_changes(
68
+ self,
69
+ corp_code: str,
70
+ bsns_year: str,
71
+ reprt_code: str,
72
+ ) -> list[StockChange]:
73
+ """증자(감자) 현황 조회.
74
+
75
+ Args:
76
+ corp_code: 고유번호 (8자리)
77
+ bsns_year: 사업연도 (YYYY)
78
+ reprt_code: 보고서 코드 (11011~11014)
79
+
80
+ Returns:
81
+ 증자(감자) 현황 목록
82
+ """
83
+ response = await self._get(
84
+ "/api/irdsSttus.json",
85
+ StockChangeListResponse,
86
+ params={
87
+ "corp_code": corp_code,
88
+ "bsns_year": bsns_year,
89
+ "reprt_code": reprt_code,
90
+ },
91
+ )
92
+ return response.items
93
+
94
+ async def get_dividends(
95
+ self,
96
+ corp_code: str,
97
+ bsns_year: str,
98
+ reprt_code: str,
99
+ ) -> list[DividendInfo]:
100
+ """배당에 관한 사항 조회.
101
+
102
+ Args:
103
+ corp_code: 고유번호 (8자리)
104
+ bsns_year: 사업연도 (YYYY)
105
+ reprt_code: 보고서 코드 (11011~11014)
106
+
107
+ Returns:
108
+ 배당 정보 목록
109
+ """
110
+ response = await self._get(
111
+ "/api/alotMatter.json",
112
+ DividendInfoListResponse,
113
+ params={
114
+ "corp_code": corp_code,
115
+ "bsns_year": bsns_year,
116
+ "reprt_code": reprt_code,
117
+ },
118
+ )
119
+ return response.items
120
+
121
+ async def get_treasury_stock(
122
+ self,
123
+ corp_code: str,
124
+ bsns_year: str,
125
+ reprt_code: str,
126
+ ) -> list[TreasuryStock]:
127
+ """자기주식 취득 및 처분 현황 조회.
128
+
129
+ Args:
130
+ corp_code: 고유번호 (8자리)
131
+ bsns_year: 사업연도 (YYYY)
132
+ reprt_code: 보고서 코드 (11011~11014)
133
+
134
+ Returns:
135
+ 자기주식 현황 목록
136
+ """
137
+ response = await self._get(
138
+ "/api/tesstkAcqsDspsSttus.json",
139
+ TreasuryStockListResponse,
140
+ params={
141
+ "corp_code": corp_code,
142
+ "bsns_year": bsns_year,
143
+ "reprt_code": reprt_code,
144
+ },
145
+ )
146
+ return response.items
147
+
148
+ async def get_largest_shareholders(
149
+ self,
150
+ corp_code: str,
151
+ bsns_year: str,
152
+ reprt_code: str,
153
+ ) -> list[LargestShareholder]:
154
+ """최대주주 현황 조회.
155
+
156
+ Args:
157
+ corp_code: 고유번호 (8자리)
158
+ bsns_year: 사업연도 (YYYY)
159
+ reprt_code: 보고서 코드 (11011~11014)
160
+
161
+ Returns:
162
+ 최대주주 현황 목록
163
+ """
164
+ response = await self._get(
165
+ "/api/hyslrSttus.json",
166
+ LargestShareholderListResponse,
167
+ params={
168
+ "corp_code": corp_code,
169
+ "bsns_year": bsns_year,
170
+ "reprt_code": reprt_code,
171
+ },
172
+ )
173
+ return response.items
174
+
175
+ async def get_executives(
176
+ self,
177
+ corp_code: str,
178
+ bsns_year: str,
179
+ reprt_code: str,
180
+ ) -> list[Executive]:
181
+ """임원 현황 조회.
182
+
183
+ Args:
184
+ corp_code: 고유번호 (8자리)
185
+ bsns_year: 사업연도 (YYYY)
186
+ reprt_code: 보고서 코드 (11011~11014)
187
+
188
+ Returns:
189
+ 임원 현황 목록
190
+ """
191
+ response = await self._get(
192
+ "/api/exctvSttus.json",
193
+ ExecutiveListResponse,
194
+ params={
195
+ "corp_code": corp_code,
196
+ "bsns_year": bsns_year,
197
+ "reprt_code": reprt_code,
198
+ },
199
+ )
200
+ return response.items
201
+
202
+ async def get_employees(
203
+ self,
204
+ corp_code: str,
205
+ bsns_year: str,
206
+ reprt_code: str,
207
+ ) -> list[Employee]:
208
+ """직원 현황 조회.
209
+
210
+ Args:
211
+ corp_code: 고유번호 (8자리)
212
+ bsns_year: 사업연도 (YYYY)
213
+ reprt_code: 보고서 코드 (11011~11014)
214
+
215
+ Returns:
216
+ 직원 현황 목록
217
+ """
218
+ response = await self._get(
219
+ "/api/empSttus.json",
220
+ EmployeeListResponse,
221
+ params={
222
+ "corp_code": corp_code,
223
+ "bsns_year": bsns_year,
224
+ "reprt_code": reprt_code,
225
+ },
226
+ )
227
+ return response.items
228
+
229
+ async def get_individual_compensation(
230
+ self,
231
+ corp_code: str,
232
+ bsns_year: str,
233
+ reprt_code: str,
234
+ ) -> list[IndividualCompensation]:
235
+ """개인별 보수 현황 조회.
236
+
237
+ Args:
238
+ corp_code: 고유번호 (8자리)
239
+ bsns_year: 사업연도 (YYYY)
240
+ reprt_code: 보고서 코드 (11011~11014)
241
+
242
+ Returns:
243
+ 개인별 보수 현황 목록
244
+ """
245
+ response = await self._get(
246
+ "/api/indvdlByPay.json",
247
+ IndividualCompensationListResponse,
248
+ params={
249
+ "corp_code": corp_code,
250
+ "bsns_year": bsns_year,
251
+ "reprt_code": reprt_code,
252
+ },
253
+ )
254
+ return response.items
255
+
256
+ async def get_director_compensation(
257
+ self,
258
+ corp_code: str,
259
+ bsns_year: str,
260
+ reprt_code: str,
261
+ ) -> list[DirectorCompensation]:
262
+ """이사/감사 보수 현황 조회.
263
+
264
+ Args:
265
+ corp_code: 고유번호 (8자리)
266
+ bsns_year: 사업연도 (YYYY)
267
+ reprt_code: 보고서 코드 (11011~11014)
268
+
269
+ Returns:
270
+ 이사/감사 보수 현황 목록
271
+ """
272
+ response = await self._get(
273
+ "/api/hmvAuditAllSttus.json",
274
+ DirectorCompensationListResponse,
275
+ params={
276
+ "corp_code": corp_code,
277
+ "bsns_year": bsns_year,
278
+ "reprt_code": reprt_code,
279
+ },
280
+ )
281
+ return response.items
282
+
283
+ async def get_largest_shareholder_changes(
284
+ self,
285
+ corp_code: str,
286
+ bsns_year: str,
287
+ reprt_code: str,
288
+ ) -> list[LargestShareholderChange]:
289
+ """최대주주 변동현황 조회.
290
+
291
+ Args:
292
+ corp_code: 고유번호 (8자리)
293
+ bsns_year: 사업연도 (YYYY)
294
+ reprt_code: 보고서 코드 (11011~11014)
295
+
296
+ Returns:
297
+ 최대주주 변동현황 목록
298
+ """
299
+ response = await self._get(
300
+ "/api/hyslrChgSttus.json",
301
+ LargestShareholderChangeListResponse,
302
+ params={
303
+ "corp_code": corp_code,
304
+ "bsns_year": bsns_year,
305
+ "reprt_code": reprt_code,
306
+ },
307
+ )
308
+ return response.items
309
+
310
+ async def get_minority_shareholders(
311
+ self,
312
+ corp_code: str,
313
+ bsns_year: str,
314
+ reprt_code: str,
315
+ ) -> list[MinorityShareholder]:
316
+ """소액주주 현황 조회.
317
+
318
+ Args:
319
+ corp_code: 고유번호 (8자리)
320
+ bsns_year: 사업연도 (YYYY)
321
+ reprt_code: 보고서 코드 (11011~11014)
322
+
323
+ Returns:
324
+ 소액주주 현황 목록
325
+ """
326
+ response = await self._get(
327
+ "/api/mrhlSttus.json",
328
+ MinorityShareholderListResponse,
329
+ params={
330
+ "corp_code": corp_code,
331
+ "bsns_year": bsns_year,
332
+ "reprt_code": reprt_code,
333
+ },
334
+ )
335
+ return response.items
336
+
337
+ async def get_director_individual_compensation(
338
+ self,
339
+ corp_code: str,
340
+ bsns_year: str,
341
+ reprt_code: str,
342
+ ) -> list[DirectorIndividualCompensation]:
343
+ """이사·감사 개인별 보수현황 (5억원 이상) 조회.
344
+
345
+ Args:
346
+ corp_code: 고유번호 (8자리)
347
+ bsns_year: 사업연도 (YYYY)
348
+ reprt_code: 보고서 코드 (11011~11014)
349
+
350
+ Returns:
351
+ 이사·감사 개인별 보수현황 목록
352
+ """
353
+ response = await self._get(
354
+ "/api/hmvAuditIndvdlBySttus.json",
355
+ DirectorIndividualCompensationListResponse,
356
+ params={
357
+ "corp_code": corp_code,
358
+ "bsns_year": bsns_year,
359
+ "reprt_code": reprt_code,
360
+ },
361
+ )
362
+ return response.items
363
+
364
+ async def get_other_corp_investments(
365
+ self,
366
+ corp_code: str,
367
+ bsns_year: str,
368
+ reprt_code: str,
369
+ ) -> list[OtherCorpInvestment]:
370
+ """타법인 출자현황 조회.
371
+
372
+ Args:
373
+ corp_code: 고유번호 (8자리)
374
+ bsns_year: 사업연도 (YYYY)
375
+ reprt_code: 보고서 코드 (11011~11014)
376
+
377
+ Returns:
378
+ 타법인 출자현황 목록
379
+ """
380
+ response = await self._get(
381
+ "/api/otrCprInvstmntSttus.json",
382
+ OtherCorpInvestmentListResponse,
383
+ params={
384
+ "corp_code": corp_code,
385
+ "bsns_year": bsns_year,
386
+ "reprt_code": reprt_code,
387
+ },
388
+ )
389
+ return response.items
390
+
391
+ async def get_total_stock_quantity(
392
+ self,
393
+ corp_code: str,
394
+ bsns_year: str,
395
+ reprt_code: str,
396
+ ) -> list[TotalStockQuantity]:
397
+ """주식의 총수 현황 조회.
398
+
399
+ Args:
400
+ corp_code: 고유번호 (8자리)
401
+ bsns_year: 사업연도 (YYYY)
402
+ reprt_code: 보고서 코드 (11011~11014)
403
+
404
+ Returns:
405
+ 주식의 총수 현황 목록
406
+ """
407
+ response = await self._get(
408
+ "/api/stockTotqySttus.json",
409
+ TotalStockQuantityListResponse,
410
+ params={
411
+ "corp_code": corp_code,
412
+ "bsns_year": bsns_year,
413
+ "reprt_code": reprt_code,
414
+ },
415
+ )
416
+ return response.items
417
+
418
+ async def get_debt_securities_issuance(
419
+ self,
420
+ corp_code: str,
421
+ bsns_year: str,
422
+ reprt_code: str,
423
+ ) -> list[DebtSecuritiesIssuance]:
424
+ """채무증권 발행실적 조회.
425
+
426
+ Args:
427
+ corp_code: 고유번호 (8자리)
428
+ bsns_year: 사업연도 (YYYY)
429
+ reprt_code: 보고서 코드 (11011~11014)
430
+
431
+ Returns:
432
+ 채무증권 발행실적 목록
433
+ """
434
+ response = await self._get(
435
+ "/api/detScritsIsuAcmslt.json",
436
+ DebtSecuritiesIssuanceListResponse,
437
+ params={
438
+ "corp_code": corp_code,
439
+ "bsns_year": bsns_year,
440
+ "reprt_code": reprt_code,
441
+ },
442
+ )
443
+ return response.items
444
+
445
+ async def get_commercial_paper_balance(
446
+ self,
447
+ corp_code: str,
448
+ bsns_year: str,
449
+ reprt_code: str,
450
+ ) -> list[CommercialPaperBalance]:
451
+ """기업어음증권 미상환 잔액 조회.
452
+
453
+ Args:
454
+ corp_code: 고유번호 (8자리)
455
+ bsns_year: 사업연도 (YYYY)
456
+ reprt_code: 보고서 코드 (11011~11014)
457
+
458
+ Returns:
459
+ 기업어음증권 미상환 잔액 목록
460
+ """
461
+ response = await self._get(
462
+ "/api/entrprsBilScritsNrdmpBlce.json",
463
+ CommercialPaperBalanceListResponse,
464
+ params={
465
+ "corp_code": corp_code,
466
+ "bsns_year": bsns_year,
467
+ "reprt_code": reprt_code,
468
+ },
469
+ )
470
+ return response.items
471
+
472
+ async def get_short_term_bond_balance(
473
+ self,
474
+ corp_code: str,
475
+ bsns_year: str,
476
+ reprt_code: str,
477
+ ) -> list[ShortTermBondBalance]:
478
+ """단기사채 미상환 잔액 조회.
479
+
480
+ Args:
481
+ corp_code: 고유번호 (8자리)
482
+ bsns_year: 사업연도 (YYYY)
483
+ reprt_code: 보고서 코드 (11011~11014)
484
+
485
+ Returns:
486
+ 단기사채 미상환 잔액 목록
487
+ """
488
+ response = await self._get(
489
+ "/api/srtpdPsndbtNrdmpBlce.json",
490
+ ShortTermBondBalanceListResponse,
491
+ params={
492
+ "corp_code": corp_code,
493
+ "bsns_year": bsns_year,
494
+ "reprt_code": reprt_code,
495
+ },
496
+ )
497
+ return response.items
498
+
499
+ async def get_corporate_bond_balance(
500
+ self,
501
+ corp_code: str,
502
+ bsns_year: str,
503
+ reprt_code: str,
504
+ ) -> list[CorporateBondBalance]:
505
+ """회사채 미상환 잔액 조회.
506
+
507
+ Args:
508
+ corp_code: 고유번호 (8자리)
509
+ bsns_year: 사업연도 (YYYY)
510
+ reprt_code: 보고서 코드 (11011~11014)
511
+
512
+ Returns:
513
+ 회사채 미상환 잔액 목록
514
+ """
515
+ response = await self._get(
516
+ "/api/cprndNrdmpBlce.json",
517
+ CorporateBondBalanceListResponse,
518
+ params={
519
+ "corp_code": corp_code,
520
+ "bsns_year": bsns_year,
521
+ "reprt_code": reprt_code,
522
+ },
523
+ )
524
+ return response.items
525
+
526
+ async def get_hybrid_securities_balance(
527
+ self,
528
+ corp_code: str,
529
+ bsns_year: str,
530
+ reprt_code: str,
531
+ ) -> list[HybridSecuritiesBalance]:
532
+ """신종자본증권 미상환 잔액 조회.
533
+
534
+ Args:
535
+ corp_code: 고유번호 (8자리)
536
+ bsns_year: 사업연도 (YYYY)
537
+ reprt_code: 보고서 코드 (11011~11014)
538
+
539
+ Returns:
540
+ 신종자본증권 미상환 잔액 목록
541
+ """
542
+ response = await self._get(
543
+ "/api/newCaplScritsNrdmpBlce.json",
544
+ HybridSecuritiesBalanceListResponse,
545
+ params={
546
+ "corp_code": corp_code,
547
+ "bsns_year": bsns_year,
548
+ "reprt_code": reprt_code,
549
+ },
550
+ )
551
+ return response.items
552
+
553
+ async def get_contingent_capital_balance(
554
+ self,
555
+ corp_code: str,
556
+ bsns_year: str,
557
+ reprt_code: str,
558
+ ) -> list[ContingentCapitalBalance]:
559
+ """조건부자본증권 미상환 잔액 조회.
560
+
561
+ Args:
562
+ corp_code: 고유번호 (8자리)
563
+ bsns_year: 사업연도 (YYYY)
564
+ reprt_code: 보고서 코드 (11011~11014)
565
+
566
+ Returns:
567
+ 조건부자본증권 미상환 잔액 목록
568
+ """
569
+ response = await self._get(
570
+ "/api/cndlCaplScritsNrdmpBlce.json",
571
+ ContingentCapitalBalanceListResponse,
572
+ params={
573
+ "corp_code": corp_code,
574
+ "bsns_year": bsns_year,
575
+ "reprt_code": reprt_code,
576
+ },
577
+ )
578
+ return response.items
579
+
580
+ async def get_auditor_opinion(
581
+ self,
582
+ corp_code: str,
583
+ bsns_year: str,
584
+ reprt_code: str,
585
+ ) -> list[AuditorOpinion]:
586
+ """회계감사인의 명칭 및 감사의견 조회.
587
+
588
+ Args:
589
+ corp_code: 고유번호 (8자리)
590
+ bsns_year: 사업연도 (YYYY)
591
+ reprt_code: 보고서 코드 (11011~11014)
592
+
593
+ Returns:
594
+ 회계감사인 정보 목록
595
+ """
596
+ response = await self._get(
597
+ "/api/accnutAdtorNmNdAdtOpinion.json",
598
+ AuditorOpinionListResponse,
599
+ params={
600
+ "corp_code": corp_code,
601
+ "bsns_year": bsns_year,
602
+ "reprt_code": reprt_code,
603
+ },
604
+ )
605
+ return response.items
606
+
607
+ async def get_audit_service_contract(
608
+ self,
609
+ corp_code: str,
610
+ bsns_year: str,
611
+ reprt_code: str,
612
+ ) -> list[AuditServiceContract]:
613
+ """감사용역 체결현황 조회.
614
+
615
+ Args:
616
+ corp_code: 고유번호 (8자리)
617
+ bsns_year: 사업연도 (YYYY)
618
+ reprt_code: 보고서 코드 (11011~11014)
619
+
620
+ Returns:
621
+ 감사용역 체결현황 목록
622
+ """
623
+ response = await self._get(
624
+ "/api/adtServcCnclsSttus.json",
625
+ AuditServiceContractListResponse,
626
+ params={
627
+ "corp_code": corp_code,
628
+ "bsns_year": bsns_year,
629
+ "reprt_code": reprt_code,
630
+ },
631
+ )
632
+ return response.items
633
+
634
+ async def get_non_audit_service_contract(
635
+ self,
636
+ corp_code: str,
637
+ bsns_year: str,
638
+ reprt_code: str,
639
+ ) -> list[NonAuditServiceContract]:
640
+ """회계감사인과의 비감사용역 계약체결 현황 조회.
641
+
642
+ Args:
643
+ corp_code: 고유번호 (8자리)
644
+ bsns_year: 사업연도 (YYYY)
645
+ reprt_code: 보고서 코드 (11011~11014)
646
+
647
+ Returns:
648
+ 비감사용역 계약체결 현황 목록
649
+ """
650
+ response = await self._get(
651
+ "/api/accnutAdtorNonAdtServcCnclsSttus.json",
652
+ NonAuditServiceContractListResponse,
653
+ params={
654
+ "corp_code": corp_code,
655
+ "bsns_year": bsns_year,
656
+ "reprt_code": reprt_code,
657
+ },
658
+ )
659
+ return response.items
660
+
661
+ async def get_outside_directors(
662
+ self,
663
+ corp_code: str,
664
+ bsns_year: str,
665
+ reprt_code: str,
666
+ ) -> list[OutsideDirector]:
667
+ """사외이사 및 그 변동현황 조회.
668
+
669
+ Args:
670
+ corp_code: 고유번호 (8자리)
671
+ bsns_year: 사업연도 (YYYY)
672
+ reprt_code: 보고서 코드 (11011~11014)
673
+
674
+ Returns:
675
+ 사외이사 현황 목록
676
+ """
677
+ response = await self._get(
678
+ "/api/outcmpnyDrctrNdChangeSttus.json",
679
+ OutsideDirectorListResponse,
680
+ params={
681
+ "corp_code": corp_code,
682
+ "bsns_year": bsns_year,
683
+ "reprt_code": reprt_code,
684
+ },
685
+ )
686
+ return response.items
687
+
688
+ async def get_unregistered_executive_compensation(
689
+ self,
690
+ corp_code: str,
691
+ bsns_year: str,
692
+ reprt_code: str,
693
+ ) -> list[UnregisteredExecutiveCompensation]:
694
+ """미등기임원 보수현황 조회.
695
+
696
+ Args:
697
+ corp_code: 고유번호 (8자리)
698
+ bsns_year: 사업연도 (YYYY)
699
+ reprt_code: 보고서 코드 (11011~11014)
700
+
701
+ Returns:
702
+ 미등기임원 보수현황 목록
703
+ """
704
+ response = await self._get(
705
+ "/api/unrstExctvMendngSttus.json",
706
+ UnregisteredExecutiveCompensationListResponse,
707
+ params={
708
+ "corp_code": corp_code,
709
+ "bsns_year": bsns_year,
710
+ "reprt_code": reprt_code,
711
+ },
712
+ )
713
+ return response.items
714
+
715
+ async def get_director_compensation_approval(
716
+ self,
717
+ corp_code: str,
718
+ bsns_year: str,
719
+ reprt_code: str,
720
+ ) -> list[DirectorCompensationApproval]:
721
+ """이사·감사 보수현황 (주주총회 승인금액) 조회.
722
+
723
+ Args:
724
+ corp_code: 고유번호 (8자리)
725
+ bsns_year: 사업연도 (YYYY)
726
+ reprt_code: 보고서 코드 (11011~11014)
727
+
728
+ Returns:
729
+ 이사·감사 보수현황 목록
730
+ """
731
+ response = await self._get(
732
+ "/api/hmvAuditAllSttus2.json",
733
+ DirectorCompensationApprovalListResponse,
734
+ params={
735
+ "corp_code": corp_code,
736
+ "bsns_year": bsns_year,
737
+ "reprt_code": reprt_code,
738
+ },
739
+ )
740
+ return response.items
741
+
742
+ async def get_director_compensation_by_type(
743
+ self,
744
+ corp_code: str,
745
+ bsns_year: str,
746
+ reprt_code: str,
747
+ ) -> list[DirectorCompensationByType]:
748
+ """이사·감사 보수현황 (유형별) 조회.
749
+
750
+ Args:
751
+ corp_code: 고유번호 (8자리)
752
+ bsns_year: 사업연도 (YYYY)
753
+ reprt_code: 보고서 코드 (11011~11014)
754
+
755
+ Returns:
756
+ 이사·감사 보수현황 목록
757
+ """
758
+ response = await self._get(
759
+ "/api/hmvAuditAllSttus3.json",
760
+ DirectorCompensationByTypeListResponse,
761
+ params={
762
+ "corp_code": corp_code,
763
+ "bsns_year": bsns_year,
764
+ "reprt_code": reprt_code,
765
+ },
766
+ )
767
+ return response.items
768
+
769
+ async def get_public_offering_fund_usage(
770
+ self,
771
+ corp_code: str,
772
+ bsns_year: str,
773
+ reprt_code: str,
774
+ ) -> list[PublicOfferingFundUsage]:
775
+ """공모자금의 사용내역 조회.
776
+
777
+ Args:
778
+ corp_code: 고유번호 (8자리)
779
+ bsns_year: 사업연도 (YYYY)
780
+ reprt_code: 보고서 코드 (11011~11014)
781
+
782
+ Returns:
783
+ 공모자금 사용내역 목록
784
+ """
785
+ response = await self._get(
786
+ "/api/pssrpCptalUseDtls.json",
787
+ PublicOfferingFundUsageListResponse,
788
+ params={
789
+ "corp_code": corp_code,
790
+ "bsns_year": bsns_year,
791
+ "reprt_code": reprt_code,
792
+ },
793
+ )
794
+ return response.items
795
+
796
+ async def get_private_placement_fund_usage(
797
+ self,
798
+ corp_code: str,
799
+ bsns_year: str,
800
+ reprt_code: str,
801
+ ) -> list[PrivatePlacementFundUsage]:
802
+ """사모자금의 사용내역 조회.
803
+
804
+ Args:
805
+ corp_code: 고유번호 (8자리)
806
+ bsns_year: 사업연도 (YYYY)
807
+ reprt_code: 보고서 코드 (11011~11014)
808
+
809
+ Returns:
810
+ 사모자금 사용내역 목록
811
+ """
812
+ response = await self._get(
813
+ "/api/prfdCptalUseDtls.json",
814
+ PrivatePlacementFundUsageListResponse,
815
+ params={
816
+ "corp_code": corp_code,
817
+ "bsns_year": bsns_year,
818
+ "reprt_code": reprt_code,
819
+ },
820
+ )
821
+ return response.items