Package Information
Released: 9/28/2025
Downloads: 39 weekly / 113 monthly
Latest Version: 0.2.27
Author: Sequence Team
Available Nodes
Documentation
n8n-nodes-sequence
n8n community node for integrating with Sequence API.
Installation
npm install n8n-nodes-sequence
Usage
This node provides access to Sequence API endpoints for triggering rules and retrieving accounts.
Credentials
This package defines two credentials and injects the required headers automatically (matching your working curl):
Sequence Rule API Secret
- Field: Rule API Secret
- Injects header:
x-sequence-signature: Bearer <secret> - If you omit the
Bearerprefix, the node will add it.
Sequence Access Token
- Field: Access Token
- Injects header:
x-sequence-access-token: Bearer <token> - If you omit the
Bearerprefix, the node will add it.
Select the appropriate credentials on the node depending on the resource:
- Use “Sequence Rule API Secret” for Rules
- Use “Sequence Access Token” for Accounts
Operations
- Rules: Trigger Sequence rules remotely
- Accounts: Retrieve account balances and information
Notes:
- For POST operations that require an empty body (like
/accounts), the node explicitly sends{}withContent-Type: application/json.
Curl parity
Example curl for accounts:
curl -X POST \
-H "x-sequence-access-token: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{}' \
https://api.getsequence.io/accounts
Configure the node with the "Sequence Access Token" credentials and no additional body fields; the request will match the above.
Development
Built using @devlikeapro/n8n-openapi-node from the OpenAPI specification.
License
MIT