List documentation rows
/documentation
Query Parameters
Parse *_schema row content from YAML into JSON objects in the response.
Response Body
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.
integrationunified_modelenvironment_integrationenvironment_unified_model
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.
readmenoteend_user_guidedescriptiontool_namequery_schemabody_schemaresponse_schemaoauth_documentation_linkoauth_app_requires_verificationoauth_note
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())