{"ok":true,"tool":"Exponent Calculator","operation":"calculate-exponent","description":"Calculate base raised to the power of exponent.","method":"POST","endpoint":"/api/exponent-calculator","webUrl":"https://ultraquick.tools/tools/exponent-calculator","parameters":{"type":"object","properties":{"base":{"type":"number","description":"The base number"},"exponent":{"type":"number","description":"The exponent (power)"}},"required":["base","exponent"]},"response":{"type":"object","properties":{"result":{"type":"number"},"base":{"type":"number"},"exponent":{"type":"number"}}},"example":{"request":{"base":2,"exponent":10},"response_shape":{"type":"object","properties":{"result":{"type":"number"},"base":{"type":"number"},"exponent":{"type":"number"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/exponent-calculator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  base (number, required) — The base number\n  exponent (number, required) — The exponent (power)","curlExample":"curl -X POST https://ultraquick.tools/api/exponent-calculator -H \"Content-Type: application/json\" -d '{\"base\":2,\"exponent\":10}'"}