# Voltage Drop Calculator API

> For the complete documentation index, see [llms.txt](/llms.txt).

Calculate electrical voltage drop for AWG copper or aluminum wire runs.

Use this endpoint to add the tool to your app, site, workflow, or agent without rebuilding formulas, validation, examples, and docs.

- Slug: `voltage-drop-calculator`
- Category: `electronics`
- Version: `2026-04-22`
- Credits per successful call: 1
- Starts on: free
- Max payload: 65536 bytes
- Privacy mode: `hash_only`
- Available on: free, starter, pro, business, scale
- Browser tool: https://miniwebtool.com/voltage-drop-calculator/

## Endpoint

`POST https://api.miniwebtool.com/v1/tools/voltage-drop-calculator/run`

## Request body

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `wire_type` | `str` | no | copper | aluminum Choices: copper, aluminum |
| `wire_size` | `str` | no | 0000 | 000 | 00 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 Choices: 0000, 000, 00, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 |
| `voltage` | `float` | no |  |
| `phase` | `str` | no | single | three Choices: single, three |
| `current` | `float` | no |  |
| `wire_length` | `float` | no |  |
| `length_unit` | `str` | no | feet | meters Choices: feet, meters |
| `power_factor` | `float` | no |  |
| `precision` | `int` | no |  |

## Example request

```json
{
  "wire_type": "copper",
  "wire_size": "12",
  "voltage": 120,
  "phase": "single",
  "current": 15,
  "wire_length": 100,
  "length_unit": "feet",
  "power_factor": 1,
  "precision": 4
}
```

## cURL

```bash
curl -X POST https://api.miniwebtool.com/v1/tools/voltage-drop-calculator/run \
  -H 'Authorization: Bearer mwt_live_YOUR_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"wire_type":"copper","wire_size":"12","voltage":120,"phase":"single","current":15,"wire_length":100,"length_unit":"feet","power_factor":1,"precision":4}'
```

## Response envelope

```json
{
  "request_id": "01K...",
  "tool": "voltage-drop-calculator",
  "tool_version": "2026-04-22",
  "credits_used": 1,
  "result": {}
}
```

## Errors

Errors are RFC 7807 `application/problem+json`. Branch on `code`, not `title`.

## MCP

Agents can discover and call this tool through `https://api.miniwebtool.com/mcp` or `https://api.miniwebtool.com/v1/mcp` using MCP `tools/list` and `tools/call`.

## Frequently asked

### What does the Voltage Drop Calculator API do?

Calculate electrical voltage drop for AWG copper or aluminum wire runs. Use it to add this utility without rebuilding formulas, validation, examples, and documentation.

### How much does one call cost?

1 credit per successful call. Failed calls do not bill.

### What parameters are required?

Required fields: (none). Full schema at `https://api.miniwebtool.com/v1/openapi.json`.

### Is this deterministic?

Yes. Same input, same output. Tool version: 2026-04-22.
