Raw blob bytes
fig_blobGet raw binary payloads from a Figma file's blob table by index to access vector geometry or glyph outlines, with base64/hex output and byte truncation.
Instructions
Return the raw bytes of one entry in the file's blob table. Vector geometry, glyph outlines and similar bulk payloads are stored there and referenced by index from fields such as vectorData.vectorNetworkBlob and Path.commandsBlob (fig_node reports these as vector.networkBlob / vector.fillBlobs). This server does not decode the vector-network format — you get the bytes, base64 or hex, truncated to maxBytes with a flag when longer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Path to the .fig / .figma file (absolute, or relative to the server CWD). | |
| index | Yes | Blob index, as reported by fig_node `vector.*`. | |
| encoding | No | Default "base64". | |
| maxBytes | No | Bytes to return before truncating (default 65536). |