Looker Studio Connector
Pull Maya's AI visibility data into Looker Studio — daily mention rates per model, citation sources, and weekly topic visibility. Available on the Enterprise plan.
Overview
The Maya Looker Studio connector pulls three flat report tables into Looker Studio, authenticated with the same Maya API keys you create for MCP (Settings → MCP, read:visibility scope).
Enterprise feature. The connector and its API are available on the Enterprise plan. The connector package (Apps Script code + manifest) is provided inside the app at Settings → MCP → Looker Studio Connector — it is not published publicly.
| Report | Grain | Fields |
|---|---|---|
visibility | daily × AI model | date, provider, total_runs, brand_mentions, mention_rate |
citations | daily × source domain | date, domain, citations, unique_pages |
topics | weekly × topic | week_start, topic, total, brand_rate, top_competitor_name, top_competitor_rate |
- Endpoint:
GET https://withmaya.ai/api/connectors/looker?report=<report>&days=<n>&projectId=<optional> - Auth:
Authorization: Bearer maya_live_…
Setup (~10 minutes)
- Create an API key — Maya → Settings → MCP → API Keys, with the
read:visibilityscope (Enterprise plan required). - Get the connector package — Settings → MCP → Looker Studio Connector → copy the Apps Script code and manifest.
- Create an Apps Script project — go to script.new, paste the code into
Code.gs, and replaceappsscript.json(Project Settings → Show "appsscript.json") with the manifest. - Deploy — Deploy → New deployment → copy the deployment ID.
- Connect — open
https://lookerstudio.google.com/datasources/create?connectorId=<deploymentId>, paste your Maya API key, pick a report.
Querying the API directly
The endpoint also works standalone — for spreadsheets, scripts, or any BI tool that can send a header:
curl -H "Authorization: Bearer maya_live_…" \
"https://withmaya.ai/api/connectors/looker?report=topics"Responses are { "report": "...", "rows": [...] } with the field names shown in the table above. projectId is optional when your key has a default project. Non-Enterprise keys receive 403.