---
title: "GET /api/v1/memos"
method: GET
path: "/api/v1/memos"
tags: ["MemoService"]
---

# GET /api/v1/memos

`GET /api/v1/memos`

ListMemos lists memos with pagination and filter.

## Query parameters

- `pageSize` integer
- `pageToken` string
- `state` 'STATE_UNSPECIFIED' | 'NORMAL' | 'ARCHIVED', enum
- `orderBy` string
- `filter` string
- `showDeleted` boolean

## Response `200`

OK

- ListMemosResponse
  - `memos` Memo[] — The list of memos.
    - `name` string — The resource name of the memo. Format: memos/{memo}, where memo is the user-defined UID.
    - `state` 'STATE_UNSPECIFIED' | 'NORMAL' | 'ARCHIVED', enum, required — The state of the memo.
    - `creator` string — The name of the creator. Format: users/{user}
    - `createTime` string, date-time — The creation timestamp. If not set on creation, the server will set it to the current time.
    - `updateTime` string, date-time — The last update timestamp. If not set on creation, the server will set it to the current time.
    - `content` string, required — Required. The content of the memo in Markdown format.
    - `visibility` 'VISIBILITY_UNSPECIFIED' | 'PRIVATE' | 'PROTECTED' | 'PUBLIC', enum, required — The visibility of the memo. One of PRIVATE (creator only), PROTECTED (signed-in users), or PUBLIC (anyone). Defaults to PRIVATE on creation when unspecified.
    - `tags` string[] — Output only. The tags extracted from the content.
    - `pinned` boolean — Whether the memo is pinned.
    - `attachments` Attachment[] — Optional. The attachments of the memo.
      - `name` string — The name of the attachment. Format: attachments/{attachment}
      - `createTime` string, date-time — Output only. The creation timestamp.
      - `filename` string, required — The filename of the attachment.
      - `content` string, bytes — Input only. The content of the attachment.
      - `externalLink` string — Optional. The external link of the attachment.
      - `type` string, required — The MIME type of the attachment.
      - `size` string — Output only. The size of the attachment in bytes.
      - `memo` string — Optional. The related memo. Refer to `Memo.name`. Format: memos/{memo}
      - `motionMedia` MotionMedia
        - `family` 'MOTION_MEDIA_FAMILY_UNSPECIFIED' | 'APPLE_LIVE_PHOTO' | 'ANDROID_MOTION_PHOTO', enum
        - `role` 'MOTION_MEDIA_ROLE_UNSPECIFIED' | 'STILL' | 'VIDEO' | 'CONTAINER', enum
        - `groupId` string
        - `presentationTimestampUs` string
        - `hasEmbeddedVideo` boolean
    - `relations` MemoRelation[] — Optional. The relations of the memo.
      - `memo` MemoRelationMemo, required — Memo reference in relations.
        - `name` string, required — The resource name of the memo. Format: memos/{memo}
        - `snippet` string — Output only. The snippet of the memo content. Plain text only.
      - `relatedMemo` MemoRelationMemo, required — Memo reference in relations.
        - `name` string, required — The resource name of the memo. Format: memos/{memo}
        - `snippet` string — Output only. The snippet of the memo content. Plain text only.
      - `type` 'TYPE_UNSPECIFIED' | 'REFERENCE' | 'COMMENT', enum, required
    - `reactions` Reaction[] — Output only. The reactions to the memo.
      - `name` string — The resource name of the reaction. Format: memos/{memo}/reactions/{reaction}
      - `creator` string — The resource name of the creator. Format: users/{user}
      - `contentId` string, required — The resource name of the content. For memo reactions, this should be the memo's resource name. Format: memos/{memo}
      - `reactionType` string, required — Required. The type of reaction (e.g., "👍", "❤️", "😄").
      - `createTime` string, date-time — Output only. The creation timestamp.
    - `property` MemoProperty — Computed properties of a memo.
      - `hasLink` boolean
      - `hasTaskList` boolean
      - `hasCode` boolean
      - `hasIncompleteTasks` boolean
      - `title` string — The title extracted from the first H1 heading, if present.
    - `parent` string — Output only. The name of the parent memo. Format: memos/{memo}
    - `snippet` string — Output only. The snippet of the memo content. Plain text only.
    - `location` Location
      - `placeholder` string — A placeholder text for the location.
      - `latitude` number, double — The latitude of the location.
      - `longitude` number, double — The longitude of the location.
  - `nextPageToken` string — A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.

## Other responses

- `default` — Default error response

---

[API](https://skmtc.net/usememos/apis/untitled-api.md) · [All operations](https://skmtc.net/usememos/apis/untitled-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usememos/untitled-api/revisions/f01e84cf5acc/schema)
