JSON

Battery Types - JSON

Batteries are devices that supply electrical energy through chemical reactions or physical energy conversion. They are broadly divided into single-use primary batteries and rechargeable secondary batteries, with various types existing based on chemical composition and shape, such as alkaline batteries, lithium-ion batteries, and nickel-metal hydride batteries. They are used in a wide range of applications from portable devices to automobiles and industrial equipment.

battery dry cell rechargeable battery lithium-ion battery energy electricity
[
  {
    "code": "ALK",
    "slug": "alkaline-battery",
    "name": "Alkaline Battery",
    "description": "The most commonly used primary battery with long life and high performance.",
    "category": "Primary Battery",
    "rechargeable": false
  },
  {
    "code": "ZNC",
    "slug": "zinc-carbon-battery",
    "name": "Zinc-Carbon Battery",
    "description": "An inexpensive and common primary battery.",
    "category": "Primary Battery",
    "rechargeable": false
  },
  {
    "code": "LIP",
    "slug": "lithium-primary-battery",
    "name": "Lithium Primary Battery",
    "description": "A primary battery with high energy density and long shelf life.",
    "category": "Primary Battery",
    "rechargeable": false
  },
  {
    "code": "SLV",
    "slug": "silver-oxide-battery",
    "name": "Silver Oxide Battery",
    "description": "A button-type primary battery with high capacity and stable voltage.",
    "category": "Primary Battery",
    "rechargeable": false
  },
  {
    "code": "ZNA",
    "slug": "zinc-air-battery",
    "name": "Zinc-Air Battery",
    "description": "A high-capacity primary battery utilizing oxygen from the atmosphere.",
    "category": "Primary Battery",
    "rechargeable": false
  },
  {
    "code": "NIC",
    "slug": "nickel-cadmium-battery",
    "name": "Nickel-Cadmium Battery",
    "description": "A durable rechargeable battery, but with memory effect.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "NIM",
    "slug": "nickel-metal-hydride-battery",
    "name": "Nickel-Metal Hydride Battery",
    "description": "An environmentally friendly and safe rechargeable battery.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "LII",
    "slug": "lithium-ion-battery",
    "name": "Lithium-Ion Battery",
    "description": "The most widely used rechargeable battery with high energy density.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "LFP",
    "slug": "lithium-iron-phosphate-battery",
    "name": "Lithium Iron Phosphate Battery",
    "description": "A type of lithium-ion battery with high safety and long life.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "LPO",
    "slug": "lithium-polymer-battery",
    "name": "Lithium-Polymer Battery",
    "description": "A thin, lightweight rechargeable battery with high shape flexibility.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "SLA",
    "slug": "lead-acid-battery",
    "name": "Lead-Acid Battery",
    "description": "The oldest and most established low-cost rechargeable battery.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "SIB",
    "slug": "sodium-ion-battery",
    "name": "Sodium-Ion Battery",
    "description": "An emerging rechargeable battery as an alternative to lithium.",
    "category": "Secondary Battery",
    "rechargeable": true
  },
  {
    "code": "SSB",
    "slug": "solid-state-battery",
    "name": "Solid-State Battery",
    "description": "A next-generation rechargeable battery using solid electrolyte.",
    "category": "Secondary Battery (Under Development)",
    "rechargeable": true
  }
]