---
title: " Other Apps"
slug: "custom-integration-via-http"
description: "Easily integrate data from multiple sources with Dataddo. Connect to your dashboarding tool of choice and output data in CSV or JSON format. Get started now!"
updated: 2023-10-30T14:26:18Z
published: 2023-10-30T14:26:18Z
---

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

# Other Apps

If your preferred dashboarding tool isn't listed, you can output the data using **an HTTP call**. This will produce data in CSV or JSON format, which most apps can easily consume.

## Create a New Data Flow

:::(Internal) (Private notes)
Special configuration
:::

1. Navigate to **Flows** and click on [**Create Flow**](https://app.dataddo.com/flow/new){target="_blank"}.
2. Click on **Connect Your Data** to add your sources. Here, you can [**blend**](/docs/data-blending){target="_blank"} or [**union**](/docs/data-union){target="_blank"} your data.
3. Click on **Connect Your Data Destination** and navigate to the **Dashboarding Apps** tab to select **REST Endpoint**.
4. Check the **Data Preview** to see if your data is correct.
5. **Name** your flow, and click on **Create Flow**.

A window with configuration details will pop up. Follow the instructions to finish the setup **in your dashboarding app**.

If you need to revisit the configuration details, simply go to the [**Flows**](https://app.dataddo.com/flows){target="_blank"} tab and click on the power outlet/plug icon.

## Obtain the data
In the configuration window, you will see HTTP call details. 
Make sure to include the authorization header in the call.

### Output in CSV
You will be provided with an output that has **header on the first line**, using **semicolon (;) as a delimiter** and each **line ends with \n** (UNIX standard). String values containing semicolon **are escaped with doublequotes ("")**.
``` code
gasourcemedium;gasessions;gapageviews
(direct)/(none);42;71
www.dataddo.com/referral;5;15
google/organic;124,144
rosemarie.top/referral;1;1
```

### Output in JSON
When a JSON format is requested, the data is provided in the attribute **data** as an array of arrays. Besides the dataset itself, dataset header information is provided in attribute **header** and data types are provided in attribute **type**.

```
{  
    "data": [  
        ["(direct)/(none)",42,71],  
        ["www.dataddo.com/referral,5,15],  
        ["google/organic",124,144],  
        ["rosemarie.top/referral",1,1]  
    ],  
    "header":[  
        "ga:sourcemedium",  
        "ga:sessions",  
        "ga:pageviews"  
     ],  
     "type":[  
        "string",  
        "integer",  
        "integer"  
     ],  
    "columnID":[  
        "5cc31fe2db15e75a161eaac2",  
        "5cc31fe2ab15d75c171eaac3",  
        "5cd31f32da15d75c163eaae4"  
    ],  
    "totalRows":4  
}
```

{{snippet.RelatedArticles Dashboards}}
