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

# List Actor Facts

> Returns a paginated list of facts for a specific actor

```
GET /openapi/memorylake/api/v3/workspaces/{workspaceId}/actors/{actorId}/facts
```

Returns a paginated list of facts scoped to a specific actor. Actor facts represent knowledge about a user that is accessible across all projects within the workspace.

<Note>
  **Permission required:** `workspace:actor_fact_list`
</Note>

### Path Parameters

<ParamField path="workspaceId" type="string" required>
  Workspace ID
</ParamField>

<ParamField path="actorId" type="string" required>
  Actor ID
</ParamField>

### Query Parameters

<ParamField query="page_size" type="integer" default="20">
  Number of facts to return per page
</ParamField>

<ParamField query="continuation_token" type="string">
  Token from a previous response to fetch the next page of results
</ParamField>

<ParamField query="expired" type="boolean">
  Include expired (forgotten) facts in the results
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123def456/actors/actor_5e4d3c2b1a0f/facts?page_size=20' \
    -H 'Authorization: Bearer sk_xxxxxx'
  ```
</RequestExample>

### Response

<ResponseField name="data" type="object">
  <Expandable title="Paginated fact list">
    <ResponseField name="items" type="array">
      Array of fact objects

      <Expandable title="Fact object">
        <ResponseField name="id" type="string">Unique fact identifier</ResponseField>
        <ResponseField name="fact" type="string">The fact text</ResponseField>
        <ResponseField name="metadata" type="object">Arbitrary key-value metadata attached to the fact</ResponseField>
        <ResponseField name="expired" type="boolean">Whether the fact has been forgotten</ResponseField>
        <ResponseField name="score" type="number">Relevance score</ResponseField>
        <ResponseField name="expiration_date" type="string|null">Scheduled expiration date, or `null` if the fact does not expire</ResponseField>
        <ResponseField name="created_at" type="string">Creation timestamp</ResponseField>
        <ResponseField name="updated_at" type="string">Last update timestamp</ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="continuation_token" type="string|null">
      Token to retrieve the next page. `null` when there are no more results.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "data": {
      "items": [
        {
          "id": "fact_4c5d6e7f8a9b",
          "fact": "User's primary programming language is Python",
          "metadata": {
            "category": "skills",
            "confidence": "high"
          },
          "expired": false,
          "score": 0.92,
          "expiration_date": null,
          "created_at": "2025-05-20T10:00:00Z",
          "updated_at": "2025-05-20T10:00:00Z"
        },
        {
          "id": "fact_1a2b3c4d5e6f",
          "fact": "User works at a fintech startup with 50 employees",
          "metadata": {
            "category": "work"
          },
          "expired": false,
          "score": 0.85,
          "expiration_date": "2026-05-20T10:00:00Z",
          "created_at": "2025-06-01T16:45:00Z",
          "updated_at": "2025-06-01T16:45:00Z"
        }
      ],
      "continuation_token": "eyJsYXN0X2lkIjoiZmFjdF8xYTJiM2M0ZDVlNmYifQ"
    }
  }
  ```
</ResponseExample>
