call_api_raw
Call any South Korean National Assembly OpenAPI endpoint directly using its service ID and JSON parameters, returning raw JSON when no specialized tool exists.
Instructions
모든 국회 OpenAPI를 직접 호출하는 만능 백도어입니다.
"해당 기능이 없다"는 답을 피하기 위해 항상 이 경로를 고려하세요.
절차: list_api_services로 ID 찾기 → get_api_spec로 파라미터 확인 → 여기서 호출.
응답을 받은 뒤, 필요한 경우 다른 고수준 툴(예: get_member_info, get_meeting_records)로 후속 검색을 연쇄 호출해 답을 완성하세요.
[주의] 이 툴은 입력값을 변환하지 않고 그대로 전송합니다.
특히 'UNIT_CD'(대수) 파라미터는 반드시 '1000xx' 형식을 사용해야 합니다. (예: 22대 국회 -> "100022", 21대 국회 -> "100021") 단순히 "22"라고 입력하면 데이터가 조회되지 않습니다.
Args: service_id: The ID of the service to call (e.g., 'OO1X9P001017YF13038'). params: JSON string of query parameters (e.g., '{"pSize": 5}').
Returns: Raw JSON response as a string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | {} | |
| service_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |