
Figma ExportImage
CertifiedExport Figma nodes as images
Figma ExportImage
Export Figma nodes as images
Calls the Figma GET /v1/images/: key endpoint and downloads every returned image in the same run, storing them in Kestra's internal storage rather than exposing Figma's raw (and short-lived) URLs as output.
type: io.kestra.plugin.figma.files.ExportImageExamples
Export two nodes of a Figma file as PNG images
id: figma_export_image
namespace: company.team
tasks:
- id: export_image
type: io.kestra.plugin.figma.files.ExportImage
accessToken: "{{ secret('FIGMA_ACCESS_TOKEN') }}"
fileKey: "abc123XYZ"
nodeIds:
- "1:2"
- "1:3"
format: PNG
Properties
accessToken *Requiredstring
Figma access token
A personal access token generated from your Figma account settings (Account Settings > Personal access tokens), scoped to what the task needs to do. A valid OAuth 2.0 access token obtained through your own authorization flow also works — this plugin does not implement the OAuth flow itself, only PAT-style bearer tokens passed as-is.
fileKey *Requiredstring
The Figma file key
Found in the file's URL: https://www.figma.com/file/: fileKey/....
nodeIds *Requiredarray
The node IDs to export
Must contain at least one ID — the Figma API returns a 400 error otherwise.
baseUrl string
https://api.figma.com/v1Figma API base URL
Defaults to the public Figma REST API. Override only to point at a self-hosted proxy or a test server.
format string
PNGPNGJPGSVGPDFThe output image format
scale numberstring
A scaling factor to apply to the exported image
Must be between 0.01 and 4. Ignored for SVG and PDF.
svgIncludeId booleanstring
Whether to include the node ID as an attribute on exported SVG elements
useAbsoluteBounds booleanstring
Whether to use the full node bounding box, ignoring any clipping
Outputs
images object
Map of node ID to the internal storage URI of the exported image