Skip to main content
POST
/
tools
/
{name}
/
call
JavaScript
import Reminix from '@reminix/sdk';

const client = new Reminix({
  apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});

const response = await client.tools.call('x', { input: { name: 'World', greeting: 'Hello' } });

console.log(response.output);
{
  "output": {
    "message": "Hello, World!"
  }
}

Authorizations

Authorization
string
header
required

API Key or Personal Access Token (PAT). When using PAT, include X-Project header.

Path Parameters

name
string
required

Tool name

Minimum string length: 1

Body

application/json
input
object
required

Input data for the tool. Structure depends on tool definition.

Response

Tool call successful

output
any | null

Output from the tool execution.