logseq_get_page
Retrieve metadata and content of a specific Logseq page by its identifier, with optional inclusion of child blocks, enabling detailed knowledge graph interaction.
Instructions
Retrieve detailed information about a specific page including metadata and content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_children | No | Include child blocks in response | |
src_page | Yes | Page identifier (name, UUID or database ID) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for retrieving a specific page",
"properties": {
"include_children": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"description": "Include child blocks in response",
"title": "Include Children"
},
"src_page": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "Page identifier (name, UUID or database ID)",
"examples": [
"[[Journal/2024-03-15]]",
12345
],
"title": "Src Page"
}
},
"required": [
"src_page"
],
"title": "GetPageParams",
"type": "object"
}