GenlyticDocs
API Reference/Export API
genlytic.app ↗
Get started

Export API

Export visibility metrics for use in external reporting tools.

GET/v1/export/metrics

Returns visibility snapshots for your workspace, most recent first — formatted for export into spreadsheets, BI tools, or custom reporting pipelines.

Requires visibility:read scope.

ParameterReqDescription
limitnumberPage size, 1–100. Default: 50.
cursorstringPagination cursor from a previous response's nextCursor.
{
  "data": [
    {
      "date": "2026-06-12T09:41:00.000Z",
      "visibilityScore": 71,
      "modelBreakdown": {
        "gpt": 84,
        "perplexity": 71,
        "claude": 68,
        "gemini": 62
      }
    }
  ],
  "nextCursor": null
}

This endpoint's response shape differs from other list endpoints: pagination is returned as a top-level nextCursor field, not a nested pagination object.

Next steps

← Previous
Agent API
Next →
Webflow
Was this page helpful?Report an issue →