getCard
Retrieve detailed card data from Heptabase in JSON, Markdown, or HTML formats, with optional related content, for efficient analysis and export.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cardId | Yes | ||
| format | No | ||
| includeRelated | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"type": "string"
},
"format": {
"enum": [
"json",
"markdown",
"html"
],
"type": "string"
},
"includeRelated": {
"type": "boolean"
}
},
"required": [
"cardId"
],
"type": "object"
}