---
title: "List all reports"
url: "https://docs.unified.to/analytics/report/List_all_reports"
description: "API reference for List all reports. Launch multiple pre-built Report integrations today with zero maintenance — all through a single API."
generated_at: "2026-06-24T17:13:58.448Z"
---
# List all reports

 GET/analytics/{connection\_id}/report

## Parameters

**limit**number  default=100

**offset**number  default=0

**updated\_gte**date 

Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**sort** enum

name

updated\_at

created\_at

**order** enum

asc

desc

**query**string 

Query string to search. eg. email address or name

**property\_id**string 

The analytics property ID to filter by

**start\_gte**string 

The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**end\_lt**string 

The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**type** enum

USERS

NEW\_USERS

SESSIONS

PAGE\_VIEWS

UNIQUE\_PAGE\_VIEWS

SCREENS

EVENTS

AVERAGE\_SESSION\_DURATION

PAGES\_PER\_SESSION

BOUNCE\_RATE

ENGAGEMENT\_RATE

EVENTS\_PER\_SESSION

CONVERSIONS

CONVERSION\_RATE

GOAL\_COMPLETIONS

GOAL\_VALUE

TRANSACTIONS

REVENUE

AVERAGE\_ORDER\_VALUE

ECOMMERCE\_CONVERSION\_RATE

SESSIONS\_BY\_SOURCE

USERS\_BY\_SOURCE

CONVERSIONS\_BY\_SOURCE

VIDEO\_VIEWS

WATCH\_TIME

AVERAGE\_VIEW\_DURATION

AVERAGE\_VIEW\_PERCENTAGE

LIKES

DISLIKES

COMMENTS

SHARES

SUBSCRIBERS\_GAINED

SUBSCRIBERS\_LOST

**dimension** enum

DATE

HOUR

DAY\_OF\_WEEK

WEEK

MONTH

YEAR

PAGE

PAGE\_TITLE

EVENT\_NAME

SOURCE

MEDIUM

CAMPAIGN

COUNTRY

CITY

DEVICE\_TYPE

BROWSER

OS

USER\_TYPE

LANDING\_PAGE

VIDEO

**fields**string array 

id

created\_at

updated\_at

property\_id

start\_at

end\_at

metrics

raw

Fields to return

**raw**string 

Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar

**connection\_id**string  required 

ID of the connection

## Returns

[AnalyticsReport](/analytics/report/model)array

**id**string 

**created\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**updated\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**property\_id**string 

points to AnalyticsProperty

**start\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**end\_at**date 

(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**metrics** array 

**raw**any 

## Code Samples

### Node.js SDK

```
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const connectionId = '5de520f96e439b002043d8dc';

const results = await sdk.analytics.listAnalyticsReports({ connectionId, 
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-24T17:10:34.992Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    property_id: '',
    start_gte: '',
    end_lt: '',
    type: '',
    dimension: '',
    fields: '',
    raw: '',
 });
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/analytics/5de520f96e439b002043d8dc/report',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-24T17:10:34.992Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    property_id: '',
    start_gte: '',
    end_lt: '',
    type: '',
    dimension: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
```

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw=")
  .setHeader("accept", "application/json")
  .setHeader("authorization", ".....")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
```

### Go

```
import (
	"fmt"
	"net/http"
	"io/ioutil"
)

url := `https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw=

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("accept", "application/json")
req.Header.Add("authorization", ".....")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
```

### Python

```
import requests

url = "https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw="

headers = {
    "accept": "application/json",
    "authorization": "....."
}

response = requests.get(url, headers=headers)
```

### PHP

```
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw=",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: ....."
  ],
]);
```

### Ruby

```
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = '....'

response = http.request(request)
puts response.read_body
```

### cURL

```
curl --request GET \
  --url 'https://api.unified.to/analytics/5de520f96e439b002043d8dc/report?limit=50&offset=0&updated_gte=2026-06-24T17:10:34.992Z&sort=updated_at&order=asc&query=&property_id=&start_gte=&end_lt=&type=&dimension=&fields=&raw=' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
