Skip to content
GET /documentation

Query Parameters

integration_idstring · uuid
environment_integration_idstring · uuid
unified_model_idstring · uuid
environment_unified_model_idstring · uuid
type
resourcestring
methodstring
hydrate_contentboolean

Parse *_schema row content from YAML into JSON objects in the response.

Response Body

limitinteger
next_cursorstring
resultobject[]
authentication_methodstring
contentstring

Row payload. For tool_name, a snake_case MCP tool name override (max 64 chars, [a-z0-9_]). For description, plain text. For *_schema types, YAML-encoded schema.

created_atstring · date-time
entity_idstring · uuid
entity_typestring
Possible values:
integrationunified_modelenvironment_integrationenvironment_unified_model
idstring · uuid
integration_namestring
methodstring
resourcestring
typestring

Documentation row type. Per-method MCP tooling uses description, tool_name, query_schema, body_schema, and response_schema. Integration-wide rows include readme, oauth_*, and note.

Possible values:
readmenoteend_user_guidedescriptiontool_namequery_schemabody_schemaresponse_schemaoauth_documentation_linkoauth_app_requires_verificationoauth_note
updated_atstring · date-time
curl -X GET 'https://api.truto.one/documentation' \
  -H 'Authorization: Bearer <your_api_token>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.truto.one/documentation', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <your_api_token>',
    'Content-Type': 'application/json',
  },
});

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

url = "https://api.truto.one/documentation"
headers = {
    "Authorization": "Bearer <your_api_token>",
    "Content-Type": "application/json",
}
params = {
}

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