See also
API Reference
Introduction to the API
The Conduit API provides endpoints to interact with workspaces, dashboards, and other resources in your application.
The base URL for all API requests is:
https://api.getconduit.app/v2/
Authorization
To access the API, include an Authorization Bearer Token in the request headers. In all sample requests, the token is represented as $token
; replace this placeholder with your actual API token.
Header format:
Authorization: Bearer $token
For accessing sub-workspace data, you must use the token specific to the sub-workspace, which can be retrieved using the List Workspaces endpoint.
Workspaces
List Workspaces
Endpoint: GET /workspaces/
Retrieves a list of all workspaces.
Sample cURL Request:
curl -X GET https://api.getconduit.app/v2/workspaces/ \
-H "Authorization: Bearer $token"
Sample JSON Response:
[
{
"id": 1,
"ext_id": "crm1",
"name": "Workspace 1",
"token": "workspace_token_1"
},
{
"id": 2,
"ext_id": null,
"name": "Workspace 2",
"token": "workspace_token_2"
}
]
Create Workspace
Endpoint: POST /workspaces/
Creates a new workspace with a specified name and optional external ID.
Sample cURL Request:
curl -X POST https://api.getconduit.app/v2/workspaces/ \
-H "Authorization: Bearer $token" \
-H "Content-Type: application/json" \
-d '{
"name": "Workspace 1",
"ext_id": "crm1"
}'
Sample JSON Response:
{
"id": 1,
"ext_id": "crm1",
"name": "Workspace 1",
"token": "new_workspace_token"
}
Dashboards
List Dashboards
Endpoint: GET /dashboards/
Fetches all dashboards available in the current workspace.
Sample cURL Request:
curl -X GET https://api.getconduit.app/v2/dashboards/ \
-H "Authorization: Bearer $token"
Sample JSON Response:
[
{
"id": 1,
"name": "Sales Dashboard"
},
{
"id": 2,
"name": "Marketing Dashboard"
}
]
Get Dashboard URL in Shared Mode
Endpoint: GET /dashboards/{dashboard_id}/share/
Retrieves a sharable URL for a specific dashboard to be embedded or viewed externally.
Sample cURL Request:
curl -X GET https://api.getconduit.app/v2/dashboards/1/share/ \
-H "Authorization: Bearer $token"
Sample JSON Response:
{
"url": "https://app.getconduit.app/r/public/dashboard/565bdaec-bda7-42eb-82d4/"
}
Clone Dashboard to Workspace
Endpoint: POST /dashboards/{dashboard_id}/clone/
Duplicates a dashboard from the master account to a specified sub-workspace, with an optional new name.
Sample cURL Request:
curl -X POST https://api.getconduit.app/v2/dashboards/1/clone/ \
-H "Authorization: Bearer $token" \
-H "Content-Type: application/json" \
-d '{
"workspace": 1,
"name": "Sales Dashboard"
}'
Sample JSON Response:
{
"id": 2,
"name": "Sales Dashboard",
"url": "https://app.getconduit.app/r/public/dashboard/565bdaec-bda7-42eb-82d4/"
}