figma_get_image_fills
Extract all image resources from a specified Figma file using your personal access token to streamline asset management and integration workflows.
Instructions
Get all image resources in the specified Figma file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileKey | Yes | Unique identifier of the Figma file | |
personalToken | No | Your Figma personal access token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileKey": {
"description": "Unique identifier of the Figma file",
"type": "string"
},
"personalToken": {
"description": "Your Figma personal access token",
"type": "string"
}
},
"required": [
"fileKey"
],
"type": "object"
}