Skip to content
GET /synthetic-tool

Synthetic tools (`syn_…`) are multi-step tools defined in Elaichi rather than derived from a connector. They are placed in a template or toolbox as an entry of `type: "synthetic"`. Each row carries `owner` (`{ id, name, email }`, resolved server-side one batch per page) alongside `owner_user_id`; read it rather than resolving the id against the paginated member directory.

Query Parameters

qstring

Case-insensitive substring match on the tool's name or description. LIKE wildcards are matched literally. Max 200 characters.

Response Body

next_cursorstring,null
prev_cursorstring,null
resultobject[]
curl -X GET 'https://api.elaichi.ai/synthetic-tool' \
  -H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/synthetic-tool', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/synthetic-tool"
headers = {
    "Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())