Skip to main content
GET
/
tools
JavaScript
import Reminix from '@reminix/sdk';

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

// Automatically fetches more pages as needed.
for await (const tool of client.tools.list()) {
  console.log(tool.id);
}
{
  "data": [
    {
      "id": "<string>",
      "projectId": "<string>",
      "name": "<string>",
      "type": "<string>",
      "status": "active",
      "description": "<string>",
      "input": {
        "type": "<string>",
        "title": "<string>",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "properties": {},
        "required": [
          "<string>"
        ],
        "items": "<unknown>"
      },
      "output": {
        "type": "<string>",
        "title": "<string>",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "properties": {},
        "required": [
          "<string>"
        ],
        "items": "<unknown>"
      },
      "discoveredAt": "<string>",
      "createdBy": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>",
  "hasMore": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
number
default:20

Number of tools to return

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination

type
string

Filter by tool type (python, typescript)

status
enum<string>

Filter by tool status

Available options:
active,
inactive

Response

List of tools

data
object[]
required
nextCursor
string | null
required
hasMore
boolean
required