{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "generator": "https://python-choigosu.com",
  "kind": "calculator",
  "slug": "jeongi",
  "registry": "C-04",
  "name": "전기요금 계산기",
  "tagline": "월 사용량을 넣으면 누진 구간을 따져 예상 전기요금까지",
  "url": "https://python-choigosu.com/jeongi/",
  "computation": "client-side",
  "license": "이용조건 미확인",
  "freshness": {
    "source": "한국전력공사",
    "sourceUrl": "https://online.kepco.co.kr/PRM004D00",
    "asOf": "2026년 3분기 단가",
    "fetchedAt": "2026-08-09T08:36:41.981Z",
    "count": 59980,
    "stale": false
  },
  "dataset": {
    "id": "kepco-tariff-2026",
    "name": "주택용 전기요금 약관 요금표",
    "url": "https://python-choigosu.com/data/kepco-tariff-2026/"
  },
  "input": {
    "type": "object",
    "x-queryString": "https://python-choigosu.com/jeongi/?<key>=<value>",
    "properties": {
      "kwh": {
        "title": "월 사용량 (kWh)",
        "x-widget": "개수",
        "description": "고지서나 한전 앱(한전ON)에서 지난달 사용량을 확인할 수 있습니다.",
        "type": "integer",
        "minimum": 0,
        "maximum": 3000,
        "default": 350
      },
      "season": {
        "title": "계절",
        "x-widget": "고르기",
        "type": "string",
        "enum": [
          "summer",
          "other"
        ],
        "x-enumLabels": {
          "summer": "여름 (7~8월)",
          "other": "그 외 계절"
        },
        "default": "summer"
      },
      "voltage": {
        "title": "계약 종별",
        "x-widget": "고르기",
        "description": "고지서에 \"주택용 저압\" 또는 \"주택용 고압\"으로 적혀 있습니다. 모르면 저압이 맞을 가능성이 높습니다.",
        "type": "string",
        "enum": [
          "low",
          "high"
        ],
        "x-enumLabels": {
          "low": "저압 (단독·빌라 대부분)",
          "high": "고압 (아파트 다수)"
        },
        "default": "low"
      }
    },
    "required": [
      "kwh"
    ],
    "additionalProperties": false
  },
  "output": {
    "headline": {
      "key": "total",
      "label": "예상 청구액",
      "format": "won"
    },
    "rows": [
      {
        "key": "baseFee",
        "label": "기본요금",
        "format": "won"
      },
      {
        "key": "energyFee",
        "label": "전력량요금",
        "format": "won"
      },
      {
        "key": "climateFee",
        "label": "기후환경요금",
        "format": "won",
        "note": "kWh당 9.0원"
      },
      {
        "key": "fuelAdj",
        "label": "연료비조정요금",
        "format": "won",
        "note": "2026년 3분기 kWh당 5.0원"
      },
      {
        "key": "vat",
        "label": "부가가치세",
        "format": "won",
        "note": "전기요금계의 10%"
      },
      {
        "key": "fund",
        "label": "전력산업기반기금",
        "format": "won",
        "note": "전기요금계의 2.7%"
      }
    ]
  },
  "scenarios": [
    {
      "label": "여름 350kWh · 저압",
      "note": "하계(7~8월)는 누진 구간이 300/450kWh 로 넓어집니다.",
      "input": {
        "kwh": 350,
        "season": "summer",
        "voltage": "low"
      },
      "url": "https://python-choigosu.com/jeongi/",
      "headline": {
        "key": "total",
        "label": "예상 청구액",
        "text": "59,980원",
        "value": 59980
      },
      "rows": [
        {
          "key": "baseFee",
          "label": "기본요금",
          "text": "1,600원",
          "value": 1600,
          "note": "2단계 적용"
        },
        {
          "key": "energyFee",
          "label": "전력량요금",
          "text": "46,730원",
          "value": 46730,
          "note": "1단계 300kWh + 2단계 50kWh"
        },
        {
          "key": "climateFee",
          "label": "기후환경요금",
          "text": "3,150원",
          "value": 3150,
          "note": "kWh당 9.0원"
        },
        {
          "key": "fuelAdj",
          "label": "연료비조정요금",
          "text": "1,750원",
          "value": 1750,
          "note": "2026년 3분기 kWh당 5.0원"
        },
        {
          "key": "vat",
          "label": "부가가치세",
          "text": "5,323원",
          "value": 5323,
          "note": "전기요금계의 10%"
        },
        {
          "key": "fund",
          "label": "전력산업기반기금",
          "text": "1,430원",
          "value": 1430,
          "note": "전기요금계의 2.7%"
        }
      ]
    },
    {
      "label": "그 외 계절 350kWh · 저압",
      "note": "같은 사용량이라도 누진 구간이 200/400kWh 라 요금이 올라갑니다.",
      "input": {
        "kwh": 350,
        "season": "other",
        "voltage": "low"
      },
      "url": "https://python-choigosu.com/jeongi/?season=other",
      "headline": {
        "key": "total",
        "label": "예상 청구액",
        "text": "70,640원",
        "value": 70640
      },
      "rows": [
        {
          "key": "baseFee",
          "label": "기본요금",
          "text": "1,600원",
          "value": 1600,
          "note": "2단계 적용"
        },
        {
          "key": "energyFee",
          "label": "전력량요금",
          "text": "56,190원",
          "value": 56190,
          "note": "1단계 200kWh + 2단계 150kWh"
        },
        {
          "key": "climateFee",
          "label": "기후환경요금",
          "text": "3,150원",
          "value": 3150,
          "note": "kWh당 9.0원"
        },
        {
          "key": "fuelAdj",
          "label": "연료비조정요금",
          "text": "1,750원",
          "value": 1750,
          "note": "2026년 3분기 kWh당 5.0원"
        },
        {
          "key": "vat",
          "label": "부가가치세",
          "text": "6,269원",
          "value": 6269,
          "note": "전기요금계의 10%"
        },
        {
          "key": "fund",
          "label": "전력산업기반기금",
          "text": "1,690원",
          "value": 1690,
          "note": "전기요금계의 2.7%"
        }
      ]
    },
    {
      "label": "여름 500kWh · 저압",
      "input": {
        "kwh": 500,
        "season": "summer",
        "voltage": "low"
      },
      "url": "https://python-choigosu.com/jeongi/?kwh=500",
      "headline": {
        "key": "total",
        "label": "예상 청구액",
        "text": "110,280원",
        "value": 110280
      },
      "rows": [
        {
          "key": "baseFee",
          "label": "기본요금",
          "text": "7,300원",
          "value": 7300,
          "note": "3단계 적용"
        },
        {
          "key": "energyFee",
          "label": "전력량요금",
          "text": "83,555원",
          "value": 83555,
          "note": "1단계 300kWh + 2단계 150kWh + 3단계 50kWh"
        },
        {
          "key": "climateFee",
          "label": "기후환경요금",
          "text": "4,500원",
          "value": 4500,
          "note": "kWh당 9.0원"
        },
        {
          "key": "fuelAdj",
          "label": "연료비조정요금",
          "text": "2,500원",
          "value": 2500,
          "note": "2026년 3분기 kWh당 5.0원"
        },
        {
          "key": "vat",
          "label": "부가가치세",
          "text": "9,786원",
          "value": 9786,
          "note": "전기요금계의 10%"
        },
        {
          "key": "fund",
          "label": "전력산업기반기금",
          "text": "2,640원",
          "value": 2640,
          "note": "전기요금계의 2.7%"
        }
      ]
    },
    {
      "label": "여름 350kWh · 고압",
      "note": "아파트 다수가 고압입니다. 같은 사용량에서 단가가 낮습니다.",
      "input": {
        "kwh": 350,
        "season": "summer",
        "voltage": "high"
      },
      "url": "https://python-choigosu.com/jeongi/?voltage=high",
      "headline": {
        "key": "total",
        "label": "예상 청구액",
        "text": "52,240원",
        "value": 52240
      },
      "rows": [
        {
          "key": "baseFee",
          "label": "기본요금",
          "text": "1,260원",
          "value": 1260,
          "note": "2단계 적용"
        },
        {
          "key": "energyFee",
          "label": "전력량요금",
          "text": "40,200원",
          "value": 40200,
          "note": "1단계 300kWh + 2단계 50kWh"
        },
        {
          "key": "climateFee",
          "label": "기후환경요금",
          "text": "3,150원",
          "value": 3150,
          "note": "kWh당 9.0원"
        },
        {
          "key": "fuelAdj",
          "label": "연료비조정요금",
          "text": "1,750원",
          "value": 1750,
          "note": "2026년 3분기 kWh당 5.0원"
        },
        {
          "key": "vat",
          "label": "부가가치세",
          "text": "4,636원",
          "value": 4636,
          "note": "전기요금계의 10%"
        },
        {
          "key": "fund",
          "label": "전력산업기반기금",
          "text": "1,250원",
          "value": 1250,
          "note": "전기요금계의 2.7%"
        }
      ]
    }
  ],
  "table": {
    "url": "https://python-choigosu.com/jeongi/table/",
    "field": "kwh",
    "values": [
      {
        "value": 150,
        "label": "150kWh",
        "url": "https://python-choigosu.com/jeongi/table/150/"
      },
      {
        "value": 200,
        "label": "200kWh",
        "url": "https://python-choigosu.com/jeongi/table/200/"
      },
      {
        "value": 250,
        "label": "250kWh",
        "url": "https://python-choigosu.com/jeongi/table/250/"
      },
      {
        "value": 300,
        "label": "300kWh",
        "url": "https://python-choigosu.com/jeongi/table/300/"
      },
      {
        "value": 350,
        "label": "350kWh",
        "url": "https://python-choigosu.com/jeongi/table/350/"
      },
      {
        "value": 400,
        "label": "400kWh",
        "url": "https://python-choigosu.com/jeongi/table/400/"
      },
      {
        "value": 450,
        "label": "450kWh",
        "url": "https://python-choigosu.com/jeongi/table/450/"
      },
      {
        "value": 500,
        "label": "500kWh",
        "url": "https://python-choigosu.com/jeongi/table/500/"
      },
      {
        "value": 550,
        "label": "550kWh",
        "url": "https://python-choigosu.com/jeongi/table/550/"
      },
      {
        "value": 600,
        "label": "600kWh",
        "url": "https://python-choigosu.com/jeongi/table/600/"
      },
      {
        "value": 650,
        "label": "650kWh",
        "url": "https://python-choigosu.com/jeongi/table/650/"
      },
      {
        "value": 700,
        "label": "700kWh",
        "url": "https://python-choigosu.com/jeongi/table/700/"
      }
    ]
  },
  "basis": [
    {
      "label": "한국전력 전기공급약관 요금표",
      "url": "https://python-choigosu.com/data/kepco-tariff-2026/"
    },
    {
      "label": "한전 한글 전기요금표",
      "url": "https://online.kepco.co.kr/PRM004D00"
    }
  ],
  "caveats": [
    "복지할인(장애인·기초생활·대가족 등)과 필수사용량 보장공제는 반영하지 않았습니다. 할인이 적용되면 실제 고지서가 이보다 적습니다.",
    "TV수신료는 포함하지 않았습니다.",
    "검침일에 따라 한 달 사용량이 두 달에 걸쳐 나뉘어 잡힐 수 있어 실제 고지서와 다를 수 있습니다.",
    "연료비조정요금은 분기마다 바뀝니다. 이 계산은 2026년 3분기(kWh당 5.0원) 기준입니다.",
    "겨울(12~2월) 슈퍼유저 요금은 이 계산기에 반영하지 않았습니다. 여름 슈퍼유저만 반영합니다.",
    "계시별(시간대별) 선택 요금제에 가입한 가구는 이 계산과 다릅니다."
  ]
}
