Overview
Figma is the dominant collaborative design platform. The Automize Figma connector covers files, components, comments, image exports, versions, styles.
- Regions: Global.
- Plans: Free + Pro + Org + Enterprise. API on all plans.
Setting up the connection
Auth type: Bearer Token.
- Figma → Account Settings → Personal Access Tokens → Generate.
- In Automize → Settings → Connectors → Figma. Paste token.
Find your credentials at https://www.figma.com/developers/api.
Rate limits
Per-token, ~100 req/min.
Data model
Design primitives:
File ─┬─ Pages ─── Frames + Components
├─ Comments
├─ Versions
└─ Styles (Text, Color, Effect)Available operations
8 operations available. Click any row to jump to its detail.
| Operation | Category | What it does |
|---|---|---|
| Create Comment | General | Add a comment to a file |
| Get File | General | Get file content as JSON |
| Get File Versions | General | List version history of a file |
| Get Images | General | Export images from a file |
| List Comments | General | List comments on a file |
| List Components | General | List published components in a file |
| List Project Files | General | List files in a project |
| List Projects | General | List projects in a team |
Operations
Create Comment
Add a comment to a file
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text | |
Message message | Yes | text | |
Client Meta client_meta | Yes | text |
Get File
Get file content as JSON
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text |
Tips
- Heavy payload (full design tree). Use ids to scope.
Get File Versions
List version history of a file
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text |
Get Images
Export images from a file
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text |
List Comments
List comments on a file
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text |
Tips
- Comments + resolved state.
List Components
List published components in a file
| Parameter | Required | Type | Description |
|---|---|---|---|
File Key file_key | Yes | text |
Tips
- Per file. Components are reusable design tokens.
List Project Files
List files in a project
| Parameter | Required | Type | Description |
|---|---|---|---|
Project Id project_id | Yes | text |
List Projects
List projects in a team
| Parameter | Required | Type | Description |
|---|---|---|---|
Team Id team_id | Yes | text |
FAQ
- Use cases?
- Design systems sync to code, automated design-token export, comment-aware QA workflows.