Sprite FusionSprite Fusion
Pixel Art GeneratorAPI

Claude Code

Use the Sprite Fusion HTTP API safely from Claude Code with standard shell or script tools.

Copy this prompt into Claude Code:

Use the Sprite Fusion API to generate pixel art sprites (characters, objects, icons...), edit them (change outfit/pose, add object to a character, etc), create their eight-direction views, create sprites with style consistency (following input examples), and animate them (with a pixel art multi-frame). Refer to the documentation at https://www.spritefusion.com/docs/pixel-art-generator/api

Generate pixel art!

curl -sS -N https://www.spritefusion.com/api/v1/generate \
  -H "Authorization: Bearer $SPRITE_FUSION_API_KEY" \
  -H "Content-Type: application/json" \
  --data '{"operation":"generate","prompt":"A brass dungeon key","size":32}' \
  > /tmp/spritefusion-events.txt

Need Help?