---
title: "Search Resources"
method: POST
path: "/v2/mcp/chatgpt/search"
tags: ["external", "external-v2"]
---

# Search Resources

`POST /v2/mcp/chatgpt/search`

## Request body

- SearchChatGPTRequestSchema
  - `kinds` string[] — Resource kinds to search. Defaults to ['note'].
  - `limit` integer — Maximum number of records to return.
  - `offset` integer — Offset into the result set.
  - `query` string, required — Free-text search string.

## Response `200`

OK

- SearchChatGPTResponseSchema
  - `limit` integer, required
  - `offset` integer, required
  - `results` SearchChatGPTResultSchema[], required
    - `created_at` string, date-time, nullable — Creation timestamp for the resource.
    - `id` string, uuid, required — Primary identifier for the resource.
    - `kind` string, required — Resource kind identifier (e.g. note).
    - `primary_label` string, required — Primary display label.
    - `secondary_label` string, nullable — Supplemental label shown beneath the primary label.
    - `snippet` string, nullable — Preview text snippet matching the query.
    - `updated_at` string, date-time, nullable — Last modification timestamp for the resource.
  - `total` integer, required

---

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