Get user profile context
curl --request GET \
--url https://api.memcontext.in/api/memories/profile \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/memories/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/memories/profile"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"static": [
"<string>"
],
"dynamic": [
"<string>"
]
}Profiles
Get user profile context
Returns pre-aggregated user context split into static (stable preferences and facts) and dynamic (recent context from the last 14 days). Cached for performance.
GET
https://api.memcontext.in
/
api
/
memories
/
profile
Get user profile context
curl --request GET \
--url https://api.memcontext.in/api/memories/profile \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.memcontext.in/api/memories/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.memcontext.in/api/memories/profile"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"static": [
"<string>"
],
"dynamic": [
"<string>"
]
}Authorizations
API key created from the MemContext dashboard. Keys are prefixed with mc_, bound to one workspace, and API-key requests cannot override that workspace.
Query Parameters
Hard isolation boundary. When provided, profile context is built only from that scope. Omit to use only unscoped/global memories.
Maximum string length:
200Scope the profile to a specific project within the selected scope.
