view_node
Generate a thumbnail of a specific node in Figma files by providing the file key and node ID. Integrates with Figma API for direct file interaction and management.
Instructions
Get a thumbnail for a specific node in a Figma file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_key | Yes | The key of the Figma file | |
node_id | Yes | The ID of the node to view. Node ids have the format `<number>:<number>` |
Input Schema (JSON Schema)
{
"properties": {
"file_key": {
"description": "The key of the Figma file",
"type": "string"
},
"node_id": {
"description": "The ID of the node to view. Node ids have the format `<number>:<number>`",
"type": "string"
}
},
"required": [
"file_key",
"node_id"
],
"type": "object"
}