Get a documentation row
GET
/documentation/{id}
Path Parameters
idstring · uuid
required
Query Parameters
hydrate_contentboolean
Response Body
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/{id}' \
-H 'Authorization: Bearer <your_api_token>' \
-H 'Content-Type: application/json'const response = await fetch('https://api.truto.one/documentation/{id}', {
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/{id}"
headers = {
"Authorization": "Bearer <your_api_token>",
"Content-Type": "application/json",
}
params = {
}
response = requests.get(url, headers=headers, params=params)
print(response.json())