get_resource
Retrieve specific Excalidraw resources such as scenes, libraries, themes, or elements through a structured API, enabling efficient diagram management and manipulation.
Instructions
Get an Excalidraw resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resource | Yes |
Input Schema (JSON Schema)
{
"properties": {
"resource": {
"enum": [
"scene",
"library",
"theme",
"elements"
],
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
}