Skip to main content
POST
/
vault
/
{id}
/
memory
/
search
curl -X POST "https://api.case.dev/vault/%3Cstring%3E/memory/search" \ -H "Authorization: Bearer $CASEDEV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "query": "<string>" }'
{
  "results": [
    {
      "id": "<string>",
      "type": "<string>",
      "content": "<string>",
      "source": "<string>",
      "tags": [
        "<string>"
      ],
      "created_by": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.case.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Path Parameters

id
string
required

Vault ID

Body

application/json
query
string
required
types
string[]
tags
string[]
limit
integer
default:10
Required range: 1 <= x <= 100

Response

Search results

results
object[]