Convert numbers between binary, octal, decimal, and hexadecimal.
This page documents the HTTP endpoint POST /api/tools/number-base/execute.
Call it over REST
POST https://api.findutils.com/api/tools/number-base/execute · no API keys · 60 requests/min per IP
Execute — verified arguments
curl -X POST https://api.findutils.com/api/tools/number-base/execute \
-H "Content-Type: application/json" \
-d '{
"value": "255",
"from": "decimal"
}' Parameter schema for this endpoint
curl https://api.findutils.com/api/tools/number-base Input schema
| Argument | Type | Required | Description |
|---|---|---|---|
| value | string | yes | The number to convert (as string to handle large values). |
| from | string (binary | octal | decimal | hexadecimal | bin | oct | dec | hex) | yes | Source base. |
Example arguments (verified)
{
"value": "255",
"from": "decimal"
} MCP
This tool is served over the REST API only. 292 other tools are also callable from Claude and any MCP client — see the MCP server.