get/api/v2/citations/domains-over-time

Return citation domains over time.

Return citation domains over time.

Requires bearer API key

Parameters

X-Project-Id

header

Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.

Schema: string

startDate

query

No description provided.

Schema: string:date-time

endDate

query

No description provided.

Schema: string:date-time

monitorIds

query

Comma-separated values are accepted.

Schema: string

modelIds

query

Comma-separated values are accepted.

Schema: string

query

query

Search citation title, URL, domain, model, or prompt text. Alias: q.

Schema: string

q

query

Alias for query.

Schema: string

sourceType

query

Single source type filter used by workspace source pages.

Schema: string

sourceTypes

query

Comma-separated source types are accepted.

Schema: string

contentType

query

Single content type filter used by workspace source pages.

Schema: string

contentTypes

query

Comma-separated content types are accepted.

Schema: string

response

query

Filter to citations extracted from one response. Alias: responseId.

Schema: string

responseId

query

Alias for response.

Schema: string

self

query

Filter self-citations or external citations.

Schema: string (self, external)

domain

query

No description provided.

Schema: string

url

query

Partial URL filter.

Schema: string

granularity

query

Bucket size. Unsupported values fall back to day.

Schema: string (day, week, month)

timezone

query

IANA timezone used for local date buckets. Invalid values fall back to UTC.

Schema: string

Responses

200

Successful JSON response.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "dates": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "series": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "domain": {
            "type": "string"
          },
          "data": {
            "type": "array",
            "items": {
              "type": "number"
            }
          }
        },
        "required": [
          "domain",
          "data"
        ]
      }
    }
  },
  "required": [
    "dates",
    "series"
  ]
}

Try it

Send this request to the local WatchLLM REST handler. Use a key from `/workspace/api`; organization keys can include `X-Project-Id` only when the endpoint documents that header.