Catalog/elec-voltage-drop

Electrical

Voltage drop & gauge API

Computes conductor voltage drop (volts and %) for single- or three-phase runs by AWG, length, current and material, and recommends the thinnest gauge meeting a max-drop limit. Answers 'What is the voltage drop on this wire run?', 'Is AWG 12 adequate or do I need a thicker gauge?'.

Price$0.06per request
MethodPOST
Route/v1/electrical/voltage-drop
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
electricalvoltage-dropawgwireconductorthree-phasegaugeneccable
API URLhttps://x402.hexl.dev/v1/electrical/voltage-drop
Integration docs
Example request
{
  "awg": "12",
  "currentA": 20,
  "lengthM": 30,
  "voltageV": 120,
  "phase": "1ph"
}
Example response
{
  "awg": "12",
  "phase": "1ph",
  "material": "copper",
  "currentA": 20,
  "lengthM": 30,
  "voltageV": 120,
  "conductorAreaMm2": 3.31,
  "voltageDropV": 6.2356,
  "voltageDropPercent": 5.1964,
  "endVoltageV": 113.7644,
  "maxDropPercent": 3,
  "withinLimit": false,
  "recommendedAwg": "9",
  "formula": "Vdrop = 2*I*(rho/A)*L"
}
Input schema
{
  "type": "object",
  "required": [
    "awg",
    "currentA",
    "lengthM",
    "voltageV"
  ],
  "properties": {
    "awg": {
      "type": "string",
      "examples": [
        "12"
      ]
    },
    "currentA": {
      "type": "number",
      "examples": [
        20
      ]
    },
    "lengthM": {
      "type": "number",
      "examples": [
        30
      ]
    },
    "voltageV": {
      "type": "number",
      "examples": [
        120
      ]
    },
    "phase": {
      "type": "string",
      "enum": [
        "1ph",
        "3ph"
      ],
      "examples": [
        "1ph"
      ]
    },
    "material": {
      "type": "string",
      "enum": [
        "copper",
        "aluminum"
      ],
      "examples": [
        "copper"
      ]
    },
    "maxDropPercent": {
      "type": "number",
      "examples": [
        3
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}