List source evidence for a context vault memory
curl --request GET \
--url https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"evidence": [
{
"chunkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chunkIndex": 123,
"content": "<string>",
"sectionPath": "<string>",
"pageNumber": 123,
"title": "<string>",
"quote": "<string>",
"confidence": 123
}
]
}Context Vault
List source evidence for a context vault memory
GET
https://api.memcontext.in
/
api
/
context-vault
/
memories
/
{memoryId}
/
evidence
List source evidence for a context vault memory
curl --request GET \
--url https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/context-vault/memories/{memoryId}/evidence"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"evidence": [
{
"chunkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chunkIndex": 123,
"content": "<string>",
"sectionPath": "<string>",
"pageNumber": 123,
"title": "<string>",
"quote": "<string>",
"confidence": 123
}
]
}Authorizations
ApiKeyAuthCookieAuth
API key created from the MemContext dashboard. Keys are prefixed with mc_, bound to one workspace, and API-key requests cannot override that workspace.
Path Parameters
Query Parameters
Optional vault inside the workspace. Defaults to the workspace's default vault.
Response
200 - application/json
Source chunks for this extracted memory.
Hide child attributes
Hide child attributes
