{"id":20570316,"url":"https://github.com/gasolin/node-red-contrib-bitfinex","last_synced_at":"2026-04-21T14:03:42.176Z","repository":{"id":67239096,"uuid":"164051481","full_name":"gasolin/node-red-contrib-bitfinex","owner":"gasolin","description":"Bitfinex API wrapper node for node-red","archived":false,"fork":false,"pushed_at":"2023-12-15T20:15:32.000Z","size":19,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-16T20:57:47.348Z","etag":null,"topics":["bitfinex","bitfinex-api","crypto","cryptocurrency","exchange","node-red","node-red-contrib"],"latest_commit_sha":null,"homepage":"https://blog.gasolin.idv.tw/2019/01/07/node-red-contrib-bitfinex/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gasolin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-04T03:10:13.000Z","updated_at":"2022-11-16T01:59:03.000Z","dependencies_parsed_at":"2023-12-15T21:44:00.104Z","dependency_job_id":"bd367c6a-689e-4109-8920-a3953805abdc","html_url":"https://github.com/gasolin/node-red-contrib-bitfinex","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasolin%2Fnode-red-contrib-bitfinex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasolin%2Fnode-red-contrib-bitfinex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasolin%2Fnode-red-contrib-bitfinex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasolin%2Fnode-red-contrib-bitfinex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gasolin","download_url":"https://codeload.github.com/gasolin/node-red-contrib-bitfinex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242186611,"owners_count":20086206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitfinex","bitfinex-api","crypto","cryptocurrency","exchange","node-red","node-red-contrib"],"created_at":"2024-11-16T05:12:18.959Z","updated_at":"2026-04-21T14:03:42.142Z","avatar_url":"https://github.com/gasolin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bitfinex Function Node for Node-RED\n\n[![npm version](https://img.shields.io/npm/v/node-red-contrib-bitfinex.svg)](https://www.npmjs.com/package/node-red-contrib-bitfinex)\n\n`node-red-contrib-bitfinex` make Bitfinex API very easy to access, you can visually show exchange data in node-red's dashboard, mashup with other services, or trade from weird objects around your house.\n\n## Install\n\n1. Install Node-RED `npm install -g node-red`\n2. Go to Node-RED user directory (default: `~/.node-red`)\n3. `npm install node-red-contrib-bitfinex`\n\nOr start Node-RED via `node-red`, then go `settings \u003e Palette \u003e Install` tab in node-red and search `bitfinex` to install this module.\n\n## Features\n\n- A Function block where you can write your own code to execute [Bitfinex's nodejs API library](https://github.com/bitfinexcom/bitfinex-api-node)\n\n![Imgur](https://i.imgur.com/BDWezQx.png)\n\n- A credential configuration block\n\n![Imgur](https://i.imgur.com/0eVeu4I.png)\n\n- Installed Blocks are provide in `bitfinex` category\n- Guides and workable rest/websocket examples are provided in help tab\n- expose `rest` method in function block to easy access [REST API](https://github.com/bitfinexcom/bitfinex-api-node/tree/master/examples/rest2) calls.\n\n![Imgur](https://i.imgur.com/ivFAJWH.gif)\n\n- expose `ws` in function block to easy access [Websocket API](https://github.com/bitfinexcom/bitfinex-api-node/tree/master/examples/ws2) calls\n\n![Imgur](https://i.imgur.com/ecJV6Io.gif)\n\n- expose `bfx` method in function block that allows [advanced usage](https://github.com/bitfinexcom/bitfinex-api-node/blob/master/examples/bfx.js).\n- `rest`, `ws` returned data are auto transformed to object based on [bfx-api-node-models](https://github.com/bitfinexcom/bfx-api-node-models)\n- The functoin block supports multiple outputs (ex: can subscribe multiple tickers and export at the same block)\n\n![Imgur](https://i.imgur.com/MLS7sCq.gif)\n\n- You can visualize value and diagram with [Node-RED dashboard](https://flows.nodered.org/node/node-red-dashboard)\n\n![Imgur](https://i.imgur.com/mow1AUX.gif)\n\n## Usage\n\nRefer official Bitfinex document https://docs.bitfinex.com/v2/docs for all APIs.\n\nBitfinex API credentials can be obtained from [https://www.bitfinex.com/api](https://www.bitfinex.com/api)\n\n## Credit\n\nThe block is derived from [node-red's build-in function block](https://github.com/node-red/node-red/blob/master/nodes/core/core/80-function.js). And refer [node-red-contrib-aws-sdk](https://github.com/cuongquay/node-red-contrib-aws-sdk) for the credential block.\n\nThe functions are build on top of [Bitfinex's nodejs API library](https://github.com/bitfinexcom/bitfinex-api-node)\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasolin%2Fnode-red-contrib-bitfinex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgasolin%2Fnode-red-contrib-bitfinex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasolin%2Fnode-red-contrib-bitfinex/lists"}