---
title: "List SRE Agent memories"
method: GET
path: "/sre_agent/memories"
tags: ["SRE Agent"]
---

# List SRE Agent memories

`GET /sre_agent/memories`

Search SRE Agent memories for the account.

Memories are knowledge learned by the SRE Agent, including service runbooks, service profiles,
incident playbooks, and incident summaries. Filter by service ID, incident ID, or memory type to retrieve
relevant memories.

Scoped OAuth requires: `incident.read`

## Query parameters

- `limit` integer
- `service_id` string
- `incident_id` string
- `type` 'runbook' | 'service_profile' | 'incident_playbook'

## Headers

- `Accept` string, required
- `Content-Type` 'application/json', required

## Response `200`

An array of SRE Agent memories.

- object
  - `memories` SREMemory[], required
    - `id` string — The unique identifier for this memory.
    - `content` string, required — The content of the SRE memory.
    - `attributes` object — Additional attributes associated with this memory.
      - `account_id` string — The ID of the account this memory is associated with.
      - `service_id` string — The ID of the service this memory is associated with.
      - `incident_id` string — The ID of the incident this memory is associated with.
      - `type` 'runbook' | 'service_profile' | 'incident_playbook' | 'incident_summary' — The type of memory.
    - `created_at` string, date-time — The date and time the memory was created.
    - `updated_at` string, date-time — The date and time the memory was last updated.

## Other responses

- `401` — Caller did not supply credentials or did not provide the correct credentials. If you are using an API key, it may be invalid or your Authorization header may be malformed.
- `403` — Caller is not authorized to view the requested resource. While your authentication is valid, the authenticated user or token does not have permission to perform this action.
- `429` — Too many requests have been made, the rate limit has been reached.

---

[API](https://skmtc.net/pagerduty/apis/rest-api.md) · [All operations](https://skmtc.net/pagerduty/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pagerduty/rest-api/versions/b679a8f3f02c/schema)
