Looker
API actions for the Looker integration.
Looker
Explore saved looks, dashboards, and run queries from your Looker workspace.
Get look
Retrieve details for a Looker look by ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
look_id | number | Yes | Numeric ID of the look to retrieve. |
Response
{
"description": "mock_value",
"id": {},
"query_id": "mock_value",
"status": "mock_value",
"title": "mock_value"
}List dashboards
List dashboards in Looker with optional title filtering.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | No | Optional substring to match dashboard titles. |
limit | number | No | Maximum number of dashboards to return. |
Response
{
"dashboards": [
{}
],
"status": "mock_value"
}Run query
Execute a saved Looker query and return the results.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query_id | string | Yes | ID of the Looker query to run. |
result_format | string | No | Desired result format (json, csv, or sql). |
Response
{
"result": {},
"status": "mock_value"
}Search looks
Search Looker looks by title or description.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | No | Optional text to match look titles. |
limit | number | No | Maximum number of looks to return. |
Response
{
"looks": [
{}
],
"status": "mock_value"
}