Korean Law Search
aiSearch
⭐ PREFERRED TOOL for vague or natural language queries. Use this FIRST when user's intent is unclear or conversational. 지능형 법령검색 시스템 검색 API (AI-powered semantic law search). Uses intelligent/semantic search to find relevant law articles. Returns FULL ARTICLE TEXT (조문내용) - more comprehensive than eflaw_search. Best for: Natural language queries like "뺑소니 처벌", "음주운전 벌금" Args: query: Search query (natural language supported, e.g., "뺑소니 처벌") search: Search scope: - 0: 법령조문 (law articles, default) - 1: 법령 별표·서식 (law appendix/forms) - 2: 행정규칙 조문 (administrative rule articles) - 3: 행정규칙 별표·서식 (administrative rule appendix/forms) display: Results per page (default 20) page: Page number (default 1) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: AI search results with full article text (법령조문 items with 조문내용) Example: >>> aiSearch(query="뺑소니 처벌", search=0) # Returns: 특정범죄 가중처벌 등에 관한 법률 제5조의3 (도주차량 운전자의 가중처벌)
Other tools also called aiSearch?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"page": {
"type": "integer",
"title": "Page",
"default": 1
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
},
"query": {
"type": "string",
"title": "Query"
},
"search": {
"type": "integer",
"title": "Search",
"default": 0
},
"display": {
"type": "integer",
"title": "Display",
"default": 7
}
}
}