dev.cartridge.analytics.listMyGamesAnalytics

cartridge.dev

Documentation

Headline analytics for every game the authenticated caller owns. Powers the multi-game dashboard overview. Fractional metrics use `unknown` because atproto lexicons have no float type.

main query

Headline analytics for every game the authenticated caller owns. Powers the multi-game dashboard overview. Fractional metrics use `unknown` because atproto lexicons have no float type.

Parameters

range string Optional

Reporting window ending today (UTC).

Output

Encodingapplication/json
games array Required

No description available.

range string Required

No description available.

Known values: 7d, 30d, 90d
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Reporting window ending today (UTC).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "range",
        "games"
      ],
      "properties": {
        "games": {
          "type": "array",
          "items": {
            "ref": "#gameSummary",
            "type": "ref"
          }
        },
        "range": {
          "type": "string",
          "knownValues": [
            "7d",
            "30d",
            "90d"
          ]
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "range": {
        "type": "string",
        "default": "30d",
        "description": "Reporting window ending today (UTC).",
        "knownValues": [
          "7d",
          "30d",
          "90d"
        ]
      }
    }
  },
  "description": "Headline analytics for every game the authenticated caller owns. Powers the multi-game dashboard overview. Fractional metrics use `unknown` because atproto lexicons have no float type."
}
gameSummary object

One row in the multi-game overview.

Properties

avgDwellMs unknown Required

Mean dwell time in milliseconds (float; unknown-typed).

ctr unknown Required

clicks / impressions, 0..1 (float; unknown-typed).

impressions integer Required

No description available.

name string Required

No description available.

pageviews integer Required

No description available.

slug string Required

No description available.

sparkline array of ref#timeseriesPoint Required

Pageviews per day for a compact sparkline.

View raw schema
{
  "type": "object",
  "required": [
    "slug",
    "name",
    "impressions",
    "pageviews",
    "ctr",
    "avgDwellMs",
    "sparkline"
  ],
  "properties": {
    "ctr": {
      "type": "unknown",
      "description": "clicks / impressions, 0..1 (float; unknown-typed)."
    },
    "name": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "pageviews": {
      "type": "integer"
    },
    "sparkline": {
      "type": "array",
      "items": {
        "ref": "#timeseriesPoint",
        "type": "ref"
      },
      "description": "Pageviews per day for a compact sparkline."
    },
    "avgDwellMs": {
      "type": "unknown",
      "description": "Mean dwell time in milliseconds (float; unknown-typed)."
    },
    "impressions": {
      "type": "integer"
    }
  },
  "description": "One row in the multi-game overview."
}
timeseriesPoint object

A single day's value in a time series. `date` is 'YYYY-MM-DD' (UTC).

Properties

date string Required

No description available.

value integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "date",
    "value"
  ],
  "properties": {
    "date": {
      "type": "string"
    },
    "value": {
      "type": "integer"
    }
  },
  "description": "A single day's value in a time series. `date` is 'YYYY-MM-DD' (UTC)."
}

Lexicon Garden

@