docs.openwatch.kr
  • About
  • DATA
    • 지방의원 (local council)
      • 상세이력 (profile)
      • 민간업무 활동내역 (former career)
      • 겸직현황 (extra job)
      • 징계현황 (disciplinaries)
    • 국회의원 (national assembly)
      • 재산신고내역 (asset disclosure)
    • 정치후원금 (political-contributions)
      • 국회의원 (national-assembly)
      • 대통령선거 (presidential election)
      • 지방선거 (local election)
  • API
  • API 목록
    • 시도, 시군구 (local-governments)
    • 정치 후원금 (political-contributions)
      • 총액 (totals)
    • 지방의원 (local-council)
      • 명단 (members)
      • 상세이력 (profiles)
      • 겸직 현황 (extra-jobs)
      • 징계 현황 (disciplinaries)
      • 민간 업무 활동 내역 (former-careers)
    • 국회의원 (national-assembly)
      • 재산 (assets)
      • 명단 (members)
      • 표결 현황 (votes)
      • 국회 본회의 (bon-meetings)
  • Specification
Powered by GitBook
On this page
  1. API 목록
  2. 정치 후원금 (political-contributions)

총액 (totals)

Previous정치 후원금 (political-contributions)Next지방의원 (local-council)

정치후원금 총액 목록

get

정치후원금 총액 목록을 조회합니다. 국회의원 후원회, 지방선거, 대통령선거 별로 후원금 총액 목록을 조회할 수 있습니다.

Query parameters
pageinteger · min: 1OptionalExample: 1
pageSizeinteger · min: 10 · max: 100OptionalExample: 10
candidatestringOptionalExample: 김진태
partyNamestringOptionalExample: 국민의힘
typeundefined · enumOptionalExample: LOCAL_ASSEMBLYPossible values:
Responses
200
조회 성공
application/json
400
요청값이 잘못되었습니다.
get
GET /api/political-contributions/totals HTTP/1.1
Host: openwatch.kr
Accept: */*
{
  "pagination": {
    "totalCount": 23
  },
  "rows": [
    {
      "id": 1,
      "type": "LOCAL_ASSEMBLY",
      "sido": "text",
      "sigungu": "text",
      "year": 2022,
      "electoralDisctrict": "경기",
      "candidate": "김진태",
      "candidateType": "광역단체장",
      "partyName": "국민의힘",
      "amount": 567853409
    }
  ]
}