A Golang package for interacting with the Figma APIs
- [GET] Files
- [GET] Images
- [POST] Comments
- [GET] Team projects
- [GET] Project files
- Testing
- CI integration
Before using this package, you will need a Figma account and a personal access token.
> go get -u github.com/torie/figma
c := figma.New("access-token")
f, err := c.File("document-key")
imgs, err := c.Images("document-key", 2, figma.ImageFormatPNG, "node-id")
Examples can be found in the examples folder