> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jsonify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Your First Workflow: Open Site & Extract Data

> Learn by doing! Create a simple workflow to open a website and extract its title.

Let's jump right in and build your first automation with Jsonify! This simple workflow will open a specific webpage and extract its title. This demonstrates the core "Open -> Extract" pattern fundamental to many automations.

## Steps

### 1. Create a New Workflow

* Navigate to your Jsonify **Dashboard**.
* Click the button sequence to create a new workflow: **Create an empty workflow ➙ Extract**.
* Notice that the created workflow already contains the necessary blocks (`Open Websites` and `Extract Data`) for this first example.

<Frame caption="Creating a new workflow from the Extract template">
  <img src="https://mintcdn.com/jsonify/vn65bgciY5DEC5Nv/Get-Started/imgs/Get-Started-Creating-a-new-workflow.png?fit=max&auto=format&n=vn65bgciY5DEC5Nv&q=85&s=a3c2b0211a3b1867273cc0a6b4d63c53" alt="Creating a new workflow from the Extract template" width="1920" height="964" data-path="Get-Started/imgs/Get-Started-Creating-a-new-workflow.png" />
</Frame>

### 2. Configure the `Open Websites` Block

* The starting point for this workflow is the `Open Websites` block, which is already on the canvas.
* Select the `Open Websites` block to configure it.
* In the URL input field, enter the website you want the AI Agent to visit. Let's use a simple, stable example: `https://example.com`
* Ensure the toggle switch next to the URL is **ON**.

<Frame caption="Configuring the Open Websites block with example.com">
  <img src="https://mintcdn.com/jsonify/vn65bgciY5DEC5Nv/Get-Started/imgs/Get-Started-Open-Websites-block-with-example.com.png?fit=max&auto=format&n=vn65bgciY5DEC5Nv&q=85&s=282d29a44f56687687de25b81dcc3cfb" alt="Open Websites Block With Example.com" width="1919" height="966" data-path="Get-Started/imgs/Get-Started-Open-Websites-block-with-example.com.png" />
</Frame>

### 3. Configure the `Extract Data` Block

* Next, we need to tell the agent what to extract. The `Extract Data` block is already placed after the `Open Websites` block on the canvas.
* Select the `Extract Data` block to configure it.
* We want a single piece of data (the title) for this example, so ensure **"A single item"** is selected.
* Define the data point you want:
  * In the first column, labeled **NAME**, type `title`.
  * In the second column, labeled **EXAMPLE VALUE OR A LONGER DESCRIPTION**, describe what the AI should extract: `Extract the main title of the webpage`.
* *(Optional)* You could add further clarification in the "Add additional instructions" field below, like: `Extract only the text content of the main page title.`

<Frame caption="Configuring the Extract Data block for title">
  <img src="https://mintcdn.com/jsonify/vn65bgciY5DEC5Nv/Get-Started/imgs/Get-Started-Extract-Data-block-for-page_title.png?fit=max&auto=format&n=vn65bgciY5DEC5Nv&q=85&s=d5a5c5ff78767b2be9f55c66d0b4d31e" alt="Configuring the Extract Data block for title" width="1920" height="968" data-path="Get-Started/imgs/Get-Started-Extract-Data-block-for-page_title.png" />
</Frame>

### 4. Run Your Workflow!

* That's it! Your simple workflow is configured and ready to run.
* Find and click the **Run** button (located at the top right of the editor).
* Jsonify will assign an AI Agent to open `example.com` and extract its title based on your instructions.

### 5. Check the Results

* When you manually run the workflow, the editor will automatically redirect you to the page for the current run.
* On this page, results will appear as the AI agent works.
* Once the workflow finishes (it should be very quick for this example), click on **"View as sheet"**. You should see the extracted data presented in a table, with columns named `title` containing the text "Example Domain" and `url` containing the link to the page where the data was extracted..

<Frame caption="Results table showing extracted title 'Example Domain'">
  <img src="https://mintcdn.com/jsonify/vn65bgciY5DEC5Nv/Get-Started/imgs/Get-Started-the-Dashboard-Results-view.png?fit=max&auto=format&n=vn65bgciY5DEC5Nv&q=85&s=a6dfe794434eba175d91b8fb4bc9d1ac" alt="Results table showing extracted title 'Example Domain'" width="1920" height="963" data-path="Get-Started/imgs/Get-Started-the-Dashboard-Results-view.png" />
</Frame>

**Congratulations!** You've successfully configured and run your first Jsonify workflow using a template. This demonstrates the basic process of navigating to a page and extracting specific information. You can now build upon this foundation to tackle more complex tasks.
