{"ok":true,"tool":"Net Worth Calculator","operation":"calculate-net-worth","description":"Calculate net worth from assets and liabilities.","method":"POST","endpoint":"/api/net-worth-calculator","webUrl":"https://toolhub-5eo.pages.dev/tools/net-worth-calculator","parameters":{"type":"object","properties":{"assets":{"type":"array","items":{"type":"number"},"description":"List of asset values"},"liabilities":{"type":"array","items":{"type":"number"},"description":"List of liability values"}},"required":["assets","liabilities"]},"response":{"type":"object","properties":{"totalAssets":{"type":"number"},"totalLiabilities":{"type":"number"},"netWorth":{"type":"number"}}},"example":{"request":{"assets":[50000,10000],"liabilities":[20000,5000]},"response_shape":{"type":"object","properties":{"totalAssets":{"type":"number"},"totalLiabilities":{"type":"number"},"netWorth":{"type":"number"}}}},"howToCall":"POST a JSON body to https://toolhub-5eo.pages.dev/api/net-worth-calculator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  assets (array, required) — List of asset values\n  liabilities (array, required) — List of liability values","curlExample":"curl -X POST https://toolhub-5eo.pages.dev/api/net-worth-calculator -H \"Content-Type: application/json\" -d '{\"assets\":[50000,10000],\"liabilities\":[20000,5000]}'"}