> ## 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.

# Get Actor Fact

> Returns the content and metadata of a single actor-level fact

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

Returns the content and metadata of a single fact scoped to an actor.

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

### Path Parameters

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

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

<ParamField path="factId" type="string" required>
  Fact ID
</ParamField>

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

### Response

<ResponseField name="data" type="object">
  <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>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "data": {
      "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"
    }
  }
  ```
</ResponseExample>
