n8n-nodes-flymyai
v0.1.22
Published
n8n community node to connect with FlyMyAI API for cheap image/video generation
Maintainers
Readme
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:devNow open n8n at http://localhost:5678 and search for FlyMyAI node.
start:devusesn8n-node-devto 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.datacontains the file (image/video) with proper filename & mimejson.metaincludes parameters and optionalconfidence
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 publicThen users can install in n8n → Settings → Community Nodes → Install → n8n-nodes-flymyai.
