Skip to main content
GET
Get a comprehensive list of all Data Apps in your organization, including their embed configurations, creation timestamps, and embed counts.
This endpoint returns all Data Apps of type “embedded” in your organization. Each Data App includes summary information about its associated embeds.
Authentication Requirement: This endpoint requires a service token (not a data app API key). Service tokens have elevated permissions to manage Data Apps across your organization.

Endpoint Formats

Authentication

This endpoint requires a service token in the Authorization header. Service tokens differ from data app API keys and provide organization-level permissions. To access your service token:
  1. In Settings page, navigate to the Service Tokens section.
  2. Click the “Generate Token” button to create a new service token if you don’t have one already.
Use this token as the Bearer value in your Authorization header.

Headers

string
required
Bearer token for API authentication. Use your service token (not data app API key).

Query Parameters

string
Whether to paginate results. Pass "true" to enable pagination with a limit of 10 per page.Note: Query parameters are passed as strings. Use "true" or "false".
string
Page number to retrieve (1-based). Only used when isPagination is "true". Must be a numeric string (e.g., "1", "2").

Response

array
Array of Data App objects with their configuration details.
string
The name of the Data App.
string
The type of the Data App. Currently always "embedded".
string
ISO 8601 formatted timestamp indicating when the Data App was created.
string
ISO 8601 formatted timestamp indicating when the Data App was last updated.
number
The total number of embed configurations associated with this Data App.
array
Array of embed configurations associated with this Data App.
object
Error object returned only when the request fails. Not included in successful responses.

Examples

HTTP Status Code Summary

Possible Errors

Quick Start Guide

1

Get your service token

In Settings page, navigate to the Service Tokens section. Click the “Generate Token” button to create a new service token if you don’t have one already.
2

List all Data Apps

Make a GET request to retrieve all Data Apps:
3

Use pagination for large lists

If you have many Data Apps, use pagination:
4

Process the results

Use the response to manage your Data Apps:

Next Steps

Create Data App

Create new Data Apps for your organization

Delete Data App

Remove Data Apps you no longer need

Create API Token

Generate API tokens for your Data Apps

List API Tokens

View API tokens for a specific Data App