Skip to main content
GET
/
api
/
v1
/
session_debug
/
tool_result
/
{session_id}
/
{tool_call_id}
Typescript (SDK)
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.sessionDebug.getSessionToolCallResultById({
    sessionId: 832133,
    toolCallId: "<id>",
  });

  console.log(result);
}

run();
{
  "tool_name": "<string>",
  "tool_result": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.syllable.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
integer
required
tool_call_id
string
required

Response

Successful Response

tool_name
string
required

Tool name

Example:

"general_information_web"

tool_result
any
required

Tool result data

Example:
{
"answer": "Syllable is a platform for building and managing AI voice agents..."
}