Run Custom Tool
Executes a custom code tool with the given parameters and returns its result. The code runs in the sandbox exactly as an agent would invoke it. A tool whose own code fails still returns 200 with success: false. Requires a token with write access.
Authorizations
Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.
Path Parameters
Custom tool id.
"kg77c0dy0mgdpzmqz6tesry8w184002s"
Body
Request body for running a custom code tool. Requires a token with write access since execution can have side effects.
Optional workspace override. If omitted, Conduit resolves the tool's workspace automatically.
"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"
Arguments passed to the tool's main entrypoint, keyed by parameter name. Every parameter the tool marks as required must be present.
Response
Custom tool run result
Result of executing a custom code tool. A non-2xx is only returned when the tool could not be found or the arguments were rejected; a tool whose code fails returns 200 with success: false.