Getting Started with Nodebase
Everything you need to start automating workflows in minutes.
What is Nodebase?
Nodebase is a visual workflow automation platform that lets you connect apps and automate tasks without writing code. Build powerful integrations between services like Notion, WhatsApp, Razorpay, Google Sheets, Gmail, and more — all from a drag-and-drop canvas.
Core Concepts
Workflows
A workflow is a sequence of nodes that execute in order. Each node receives data from the previous node via context — a shared JSON object that flows through the entire execution.
Nodes
Nodes are the building blocks of every workflow. Each node:
- Receives context from upstream nodes
- Performs an action (API call, transformation, etc.)
- Passes updated context to downstream nodes
Context
Context is a JSON object that flows through your workflow:
- Each node's output is merged into context
- Reference previous outputs using
{{variableName.field}}
{
"userData": {
"httpResponse": {
"data": {
"id": 1,
"name": "John Doe",
"email": "john@example.com"
},
"status": 200,
"ok": true
}
}
}{{userData.httpResponse.data.email}}Template Variables
Use Handlebars syntax to reference data anywhere in your node configuration:
| Syntax | Description |
|---|---|
| {{variableName.field}} | Simple value access |
| {{json variableName}} | Stringify an object |
| {{variableName.nested.deep}} | Nested property access |
Quick Start (5 minutes)
- Create account — sign up at nodebase.app
- Add credentials — go to Credentials → Add your first API key
- Create a workflow — click "New Workflow"
- Add a Manual Trigger — drag it onto the canvas
- Add an HTTP Request node — connect it to the trigger
- Execute — click the Execute button and see the results
Credential Management
Nodebase securely stores your API keys and tokens. Credentials are encrypted at rest and are never exposed in workflow logs. To add a credential:
- Navigate to Credentials in the dashboard
- Click Add Credential
- Select the service (e.g. Notion, Razorpay, WhatsApp)
- Paste your API key or token and save