Your First Workflow
This quickstart will walk you through building your first workflow in Autom8 AI—step by step. You’ll create a simple automation that fetches live data, adds logic, and sends the output to an external service.
Along the way, you’ll learn how to:
Create a workflow from scratch
Start workflows with trigger nodes
Connect to external services using credentials
Process and filter data
Add logic and use expressions
Step 1: Create a New Workflow
When you log in to Autom8 AI:
Click Start from Scratch on the welcome screen
Or from the Workflows dashboard, click Create Workflow
Step 2: Add a Trigger Node
Workflows need a trigger to start. We’ll use a Schedule Trigger to run this every Monday at 9:00 AM.
Click Add First Step
Search and select Schedule Trigger
Set:
Trigger Interval: Weeks
Weeks Between Triggers: 1
Day: Monday
Time: 9:00 AM
Step 3: Connect to NASA API
We’ll fetch real-time solar flare data using NASA’s DONKI API.
Click the connector on the Schedule Trigger
Search and select NASA
Choose Get a DONKI Solar Flare
Under Credentials, click Create New
Generate a NASA API Key from their website and paste it in
Under Additional Fields, add Start Date
Open the Expression Editor and enter:
Click Execute Step to test the node and confirm it’s fetching the latest solar flare data
Step 4: Add Logic with an If Node
Let’s separate higher-class flares from smaller ones.
Add an If node after the NASA node
In Value 1, drag in the
classType
fieldSet comparison to String > Contains
In Value 2, enter
X
(the strongest flare class)
Tip: If no X-class flares appear, try
M
,C
, orB
.
Click Execute Step to verify the condition returns some matching data.
Step 5: Send Output to PostBin
Use PostBin to visualize the output.
On the true path from the If node, add a PostBin node
Choose Send a Request
Create a bin at postbin.com and copy the ID
Paste the ID in the Bin ID field
In Bin Content, open the Expression Editor and enter:
Close the node
Duplicate it and connect the false path from the If node
Step 6: Test the Workflow
Click Test Workflow
Watch each step execute live
Return to your PostBin tab and refresh—your messages should appear
To activate weekly automation, toggle the workflow status to Active.
Reminder: PostBin bins expire after 30 minutes. If needed, create a new bin and update the Bin ID.
✅ Congratulations!
You've built a functional workflow that:
Uses a time-based trigger
Connects to a public API
Filters live data with logic
Sends formatted output to an external service
Last updated