-
Notifications
You must be signed in to change notification settings - Fork 12
Downloading draft files
Alex Chan edited this page Jul 6, 2024
·
3 revisions
Drafts in Figma are files that are not associated with a project. However, drafts are actually put into an "invisible" project that you can access via Figma's REST API and transitively run figma-export on.
To find the drafts project ID:
- Open Figma in your browser
- Open Developer tools
- Navigate to the Network tab
- In Figma, navigate to the drafts page
- In the Network tab, filter the results to
paginated_files
- Look for the request for
paginated_files
- Grab the full request URL
The request URL that you grabbed should look something like: https://www.figma.com/api/folders/1234567890/paginated_files?file_type=&sort_order=desc&sort_column=updated_at&page_size=50
. In this case, the drafts project ID is 1234567890
.