# Ethereum Unit & Address Converter

> Ethereum Unit & Address Converter is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Converts between Ethereum token denominations (wei/gwei/ether or arbitrary decimals), between hex and integer representations, and computes or validates EIP-55 checksummed Ethereum addresses.

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/crypto/convert
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ethereum-unit-address-converter-ff3e0b23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x5ouxUfDBiU2YuuNgwYJs

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability ethereum-unit-address-converter-ff3e0b23
```

Example prompt: Convert 1500000000000000000 wei to ether, and also give me the EIP-55 checksummed version of 0xd8da6bf26964af9d7eed9e03e53415d37aa96045.

## When to prefer this

Use this endpoint when you need precise, on-demand Ethereum unit conversions (wei/gwei/ether or custom decimal token units), hex-to-int or int-to-hex conversion, or need to compute or validate an EIP-55 checksummed Ethereum address — especially within a web3 or blockchain agent workflow where accuracy and standardized formatting matter.

## Known failure modes

- Missing required 'op' query parameter returns an error
- Invalid or unsupported unit name for op=units returns an error
- Malformed or non-Ethereum address for op=checksum returns an error
- Non-numeric or malformed value for op=hex or op=units returns an error
- Payment not provided or insufficient returns HTTP 402

## How this service works

Convert token units (wei/gwei/ether or arbitrary decimals), between hex and int, and compute/validate an EIP-55 checksummed address.

## Output

Returns the converted value (e.g. human-readable token amount in target unit, decimal or hex integer), or the EIP-55 checksummed Ethereum address string, depending on which operation (units/hex/checksum) was requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "op"
     ],
     "properties": {
      "op": {
       "enum": [
        "units",
        "checksum",
        "hex"
       ],
       "type": "string"
      },
      "to": {
       "description": "Target unit for op=units; for op=hex use int or hex"
      },
      "from": {
       "description": "Source unit for op=units: wei, gwei, ether, or an integer decimals count"
      },
      "value": {
       "description": "Amount for op=units; integer or 0x hex for op=hex"
      },
      "address": {
       "type": "string",
       "description": "Address to checksum/validate (op=checksum)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ethereum-unit-address-converter-ff3e0b23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
