flymyai

n8n community node to connect with FlyMyAI API for cheap image/video generation

Package Information

Downloads: 0 weekly / 35 monthly
Latest Version: 0.1.22
Author: flymyai_team

Documentation

n8n-nodes-flymyai

Generate images or videos via FlyMyAI models from n8n.

  • Auth: API Key (Bearer)
  • Endpoint: POST https://api.flymy.ai/v1/predict
  • Body: { "model": "<modelName>", "payload": { ... } }
  • Output: Binary (item.binary.data) + JSON metadata (item.json.meta)

Install (local dev)

# unzip this repo, then:
cd n8n-nodes-flymyai
npm install
npm run build
npm run start:dev

Now open n8n at http://localhost:5678 and search for FlyMyAI node.

start:dev uses n8n-node-dev to run a local n8n with your node loaded.

Usage

  • Text → Image/Video: Set Prompt and Model (e.g., flymyai/flux-schnell). Run.
  • Image → Image: Feed an incoming binary image and set Input Image (Binary) to that binary key (e.g., data).

Outputs one n8n item per generated sample:

  • binary.data contains the file (image/video) with proper filename & mime
  • json.meta includes parameters and optional confidence

Credentials

Create a FlyMyAI API credential in n8n with your API Key (from FlyMyAI profile settings).

Publish to npm (optional)

npm login
npm run build
npm publish --access public

Then users can install in n8n → Settings → Community Nodes → Install → n8n-nodes-flymyai.

Discussion