Maya

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.

ReportGrainFields
visibilitydaily × AI modeldate, provider, total_runs, brand_mentions, mention_rate
citationsdaily × source domaindate, domain, citations, unique_pages
topicsweekly × topicweek_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)

  1. Create an API key — Maya → Settings → MCP → API Keys, with the read:visibility scope (Enterprise plan required).
  2. Get the connector package — Settings → MCP → Looker Studio Connector → copy the Apps Script code and manifest.
  3. Create an Apps Script project — go to script.new, paste the code into Code.gs, and replace appsscript.json (Project Settings → Show "appsscript.json") with the manifest.
  4. Deploy — Deploy → New deployment → copy the deployment ID.
  5. 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:

Bash
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.