read_note
Retrieve the contents of an Obsidian note file by specifying its filepath using a REST API, enabling external applications to access and use note data programmatically.
Instructions
Read and return the contents of an Obsidian note file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}