get_drawing
Retrieve an Excalidraw drawing by its unique ID for viewing, editing, or exporting to formats like SVG, PNG, or JSON.
Instructions
Get an Excalidraw drawing by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}