Explo
Search…
Explo Help Desk
FAQs
Getting Started
Creating my first dashboard
Database Setup
Connecting to your database or data warehouse
Data Sources and Schema
Building your data model
Creating Dashboards
Variables
Visualizations
UI Elements
Dashboard Features
Version Control
Custom Styles
Email Reporting (Beta)
Analytics Reporting
Internationalization
Dashboard Attributes
Timezones
Custom Fonts
Embedding Documentation
Whitelisting your domain
Option 1: Web Component
Option 2: iFrame
Option 3: End User Portal
API Documentation
Explo's Authentication
End User Group API
End User API
Export Dashboard API
Dashboard API
Security
Security Overview
Troubleshooting
Common Errors
Powered By
GitBook
Dashboard API
get
https://api.explo.co
/api/dashboard
Get Team Dashboards
Response field descriptions
Field Name
Type
Description
success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
dashboards
array
Array of dashboards
Dashboard Type
Field Name
Type
Description
team_id
number
Your team ID
name
string
Name of dashboard
embed_id
string
ID of the dashboard for embedding
attributes
array
Attribute values assigned to dashboard
Attribute Type
Field Name
Type
Description
attribute
string
The name of the attribute
value
string
The value assigned for the attribute
Example Request and Response
1
curl --location --request GET 'https://embeddo.herokuapp.com/api/dashboard/' \
2
--header 'Content-Type: application/json' \
3
--header 'Explo-Authorization: Token <token>'
Copied!
1
{
2
"success": 1,
3
"dashboards": [
4
{
5
"team_id": 1,
6
"name": "Example Dashboard",
7
"embed_id": "vcjTgL2wdX",
8
"attributes": [
9
{
10
"attribute": "Team",
11
"value": "Engineering"
12
}
13
]
14
},
15
{
16
"team_id": 1,
17
"name": "Production Dashboard",
18
"embed_id": "JQvCTLT76V",
19
"attributes": [
20
{
21
"attribute": "Status",
22
"value": "Ready"
23
},
24
{
25
"attribute": "Team",
26
"value": "Marketing"
27
}
28
]
29
},
30
]
31
}
Copied!
Previous
Export Dashboard API
Next - Security
Security Overview
Last modified
28d ago
Copy link