> For the complete documentation index, see [llms.txt](https://wiki.decimal.at/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.decimal.at/technical/quickstart-your-1st-workflow-in-5-mins.md).

# Quickstart: Your 1st workflow in 5 mins

> It’s the rare moment of delight when your mom asks how your crypto app works, and you can literally show her a flow that runs itself, no tutorials needed.
>
> The satisfaction of seeing something complex, feel simple.

***

{% hint style="info" %}
Make sure your [setup](/technical/setup.md) is complete before you start creating workflows.
{% endhint %}

### Step 1: Create your First Workflow

1. Log into your Decimal application
2. Click **New Workflow** → give it a name (e.g., *Get the latest ETH price*).
3. You’ll see an empty canvas (like a whiteboard) - this is where your workflow comes alive.

### Step 2: Add a Trigger

* Click **Add Node** → opens the *Editor* panel on the panel
* Under **TRIGGER** section, click and drop the **Trigger** node onto the canvas
* This node marks the *start* of your workflow.&#x20;

### Step 3: Add an Action

* Search for **Coingecko** in the right panel.
* Click and drop the **Fetch Token Price** node from the **COINGECKO** section onto the canvas.
* Hover over the node, and click the ⛯ (Settings) icon.
* Select `Free` API plan and enter your API Key: `CG-KYMXxxie947QdgQNQEcoYhJ7` . Click Validate & Continue
* Select `usd` from the VS Currency and `eth` (Ethereum) for Token dropdowns. Leave the **Result Variable Name** as `coingeckoResult`
* Click outside of the modal to save the settings.

### Step 4: Connect the Nodes

* Click on the ⊕ (output) of the **Trigger** node.&#x20;
* Then click the activated ▷ (input) of the **Fetch Token Price** node.
* A blue connecting line appears, showing the order of execution.

### Step 5: Run

* Hit the blue **Play** button in the footer.
* Both nodes should show a green badge - indicating successful execution - along with a notification.
* Open the **Logs** tab in the right sidebar to see execution details for each node. Under the **Fetch Token Price** log, the `coingeckoResult.responseData.ethereum.usd` variable will display the latest `ETH` price.

&#x20;

***

🎉 <mark style="color:orange;">**Congrats!**</mark> You've just built and run your first workflow successfully.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.decimal.at/technical/quickstart-your-1st-workflow-in-5-mins.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
