getCard
Retrieve and export data from Heptabase cards in JSON, Markdown, or HTML formats by specifying the card ID. The tool supports including related data for comprehensive insights.
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"
}