> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentlinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List citation observations

> List retained citation observation metadata within accessible projects.

`list_citation_observations`

List retained citation observation metadata within accessible projects. Expired bodies remain explicitly expired; no engine measurement starts.

<Note>Available in the deployed MCP and HTTP bundle. Confirm access and inputs with your connected catalog. Workspace scopes and enabled providers still apply.</Note>

| Access         | Behavior         |
| -------------- | ---------------- |
| `watches:read` | Reads saved data |

This read does not start a verification job.

## Example request

Connect through [MCP](/guides/connect-mcp), [CLI](/guides/connect-cli), or [HTTP](/guides/connect-http). Replace example identifiers with records from your workspace.

<CodeGroup>
  ```json MCP theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "list_citation_observations",
      "arguments": {
        "projectId": "project_example",
        "limit": 20
      }
    }
  }
  ```

  ```bash CLI theme={null}
  agentlinkops call list_citation_observations --args '{"projectId":"project_example","limit":20}'
  ```

  ```bash HTTP theme={null}
  curl "$AGENTLINKOPS_API_URL/v1/commands/list_citation_observations" \
    -H "Authorization: Bearer $AGENTLINKOPS_API_KEY" \
    -H 'Content-Type: application/json' \
    --data '{"projectId":"project_example","limit":20}'
  ```
</CodeGroup>

## Returned result

Illustrative data validated against the documented response schema. IDs and dates are examples, not a live account capture. MCP returns this data in `structuredContent` and in a text content block; generic HTTP and CLI return the JSON result directly.

<Accordion title="Full response example">
  ```json theme={null}
  {
    "observations": [
      {
        "id": "cio_example",
        "workspace_id": "workspace_example",
        "project_id": "project_example",
        "epoch_id": "epoch_example",
        "cell_id": "mock:builtin|prompt_example|d:example.com",
        "run_index": 0,
        "engine_identity": "mock:builtin",
        "engine": "mock",
        "provider": "builtin",
        "model": null,
        "provider_model_version": "fixture-v1",
        "prompt_sha256": "4364b167170e8dd0b6caccab39a1fcf64d039013a50e091e8939d5187fa11007",
        "content_sha256": "771a4a6afc3bb5b9637c8698caf894dfc9a081dd5bc13e41d75374ab13e9e39c",
        "local_evidence_sha256": null,
        "ingest_cli_version": "0.6.2",
        "byte_length": 387,
        "observed_at": "2026-09-20T00:00:00.000Z",
        "created_at": "2026-09-20T00:00:00.000Z",
        "expires_at": "2026-10-20T00:00:00.000Z",
        "evidence_status": "retained",
        "screenshot": {
          "reference": null,
          "sha256": null,
          "retained": false
        }
      }
    ],
    "cursor": null
  }
  ```
</Accordion>

## Input fields

Omit optional fields when you do not want to supply them. Null is accepted only where listed. Unknown input properties are rejected.

| Field       | Type    | Presence | Meaning and constraints                                                                                           |
| ----------- | ------- | -------- | ----------------------------------------------------------------------------------------------------------------- |
| `projectId` | string  | Optional | Identifier of the project returned by its create or list operation. minLength: 1; maxLength: 200                  |
| `epochId`   | string  | Optional | Identifier of the epoch returned by its create or list operation. minLength: 1; maxLength: 200                    |
| `cellId`    | string  | Optional | Identifier of the cell returned by its create or list operation. minLength: 1; maxLength: 4096                    |
| `cursor`    | string  | Optional | Opaque continuation returned by this same listing; omit for the first page. maxLength: 4096                       |
| `limit`     | integer | Optional | Maximum rows in this page or bounded report; subject to the schema maximum. minimum: 1; maximum: 100; default: 50 |

### Validation and omitted values

Lists scoped observation metadata with a query-bound cursor. Expired bodies remain labeled expired; listing starts no measurement.

### Defaults when omitted

| Field   | Default |
| ------- | ------- |
| `limit` | `50`    |

## Output fields

Fields inside optional or nullable parents apply only when that parent exists. [Common schema conventions](/reference/schemas) explain evidence states, empty lists and extensions.

* **`observations`** (array, required).
* **`cursor`** (string / null, required).

<Accordion title="All fields and nested objects">
  | Field                                   | Type          | Presence | Meaning and constraints                                                     |
  | --------------------------------------- | ------------- | -------- | --------------------------------------------------------------------------- |
  | `observations`                          | array         | Required |                                                                             |
  | `observations[].id`                     | string        | Required | Resource identifier returned by the operation. minLength: 1; maxLength: 200 |
  | `observations[].workspace_id`           | string        | Required | Workspace that owns this record. minLength: 1; maxLength: 200               |
  | `observations[].project_id`             | string        | Required | Project that owns this record. minLength: 1; maxLength: 200                 |
  | `observations[].epoch_id`               | string        | Required | Identifier returned by the related operation.                               |
  | `observations[].cell_id`                | string        | Required | Identifier returned by the related operation.                               |
  | `observations[].run_index`              | integer       | Required | minimum: 0; maximum: 9007199254740991                                       |
  | `observations[].engine_identity`        | string        | Required |                                                                             |
  | `observations[].engine`                 | string        | Required |                                                                             |
  | `observations[].provider`               | string        | Required |                                                                             |
  | `observations[].model`                  | string / null | Required |                                                                             |
  | `observations[].provider_model_version` | string        | Required |                                                                             |
  | `observations[].prompt_sha256`          | string        | Required | pattern: "^\[a-f0-9]\{64}\$"                                                |
  | `observations[].content_sha256`         | string        | Required | pattern: "^\[a-f0-9]\{64}\$"                                                |
  | `observations[].local_evidence_sha256`  | string / null | Required |                                                                             |
  | `observations[].ingest_cli_version`     | string        | Required |                                                                             |
  | `observations[].byte_length`            | integer       | Required | maximum: 9007199254740991; exclusiveMinimum: 0                              |
  | `observations[].observed_at`            | string        | Required | UTC timestamp of the observation used here.                                 |
  | `observations[].created_at`             | string        | Required | UTC timestamp when the record was created.                                  |
  | `observations[].expires_at`             | string        | Required |                                                                             |
  | `observations[].evidence_status`        | string        | Required | values: "retained", "expired"                                               |
  | `observations[].screenshot`             | object        | Required | additional fields rejected                                                  |
  | `observations[].screenshot.reference`   | string / null | Required |                                                                             |
  | `observations[].screenshot.sha256`      | string / null | Required |                                                                             |
  | `observations[].screenshot.retained`    | boolean       | Required | must equal false                                                            |
  | `cursor`                                | string / null | Required |                                                                             |
</Accordion>

[Download input schema](/schemas/list_citation_observations.input.json) · [Download output schema](/schemas/list_citation_observations.output.json)

## Errors and retries

The command is annotated idempotent. Reuse an accepted idempotency key when the input provides one; changing the payload under a reused key can conflict.

See [error recovery](/reference/errors) for status, scope, cooldown, cursor and retry handling. Unknown observations are result data and do not establish loss.

## HTTP resource routes

This operation has no separate resource alias. Use its generic command route in a matching environment.

## Continue

[get\_citation\_evidence](/reference/commands/get_citation_evidence)

Follow the [related workflow](/guides/monitor-changes), inspect [capability status](/capability-status), or return to the [command index](/reference/index).
