Getting Started
Quickstart
Build and run your first workflow in under 5 minutes.
This guide walks you through creating a simple workflow that fetches a token price and logs it.
This quickstart uses Birdeye, so add a Birdeye credential first. If you only want to test the editor without credentials, build a two-node workflow instead: Manual Trigger -> Log.
1. Create a workflow
- From the dashboard, click Create Workflow
- Name it "My First Flow"
- You're now in the visual editor
2. Add a trigger
- The node toolbar is on the left side of the canvas
- Drag a Manual Trigger node onto the canvas
- This lets you run the workflow by clicking a button
3. Add a data node
- Drag a Birdeye node onto the canvas (under Integrations)
- Click the node to open its settings
- Set the operation to Get Price
- Enter a token address (e.g., SOL:
So11111111111111111111111111111111111111112) - Select your Birdeye credential (add one in Credentials first)
4. Connect the nodes
- Click the output port (right side) of the Manual Trigger
- Drag to the input port (left side) of the Birdeye node
- An edge appears connecting them
5. Add a log node
- Drag a Log node onto the canvas
- Connect Birdeye's output to the Log input
- In the Log config, set the message to:
Price: {birdeyeResponse.data.value}
6. Run it
- Click the Run button in the top toolbar
- Watch the nodes light up green as they execute
- Open the executions panel to see the Log output, node timings, and run details
You just built and ran your first Solaris AI Flow workflow.
Next steps
- Core Concepts - understand the building blocks
- Node Reference - explore the node library
- Triggers - automate with webhooks and cron
