API for managing personal memory items with authentication and user-specific data.
API for managing personal memory items with authentication and user-specific data.
This API supports three authentication methods:
X-API-Key headerX-API-Key: <your-api-key>X-Session-Token headerX-Session-Token: <your-session-token>Authorization headerAuthorization: Bearer <token>All endpoints require one of these authentication methods.
Domain for frequency schema
Domain for frequency schema
Domain for frequency schema
Schema override
Schema override
Schema override
curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/holographic/metadata \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"content": "string",
"domain": "general",
"frequency_schema_id": "string",
"context_metadata": {}
}'{ "status": "success", "data": { "metadata": {}, "phases": [ … ], "domain": "string", "frequency_schema_id": "string", "timing_ms": 0 } }
curl -i -X GET \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/holographic/domains \
-H 'X-API-Key: YOUR_API_KEY_HERE'{ "status": "success", "domains": [ { … } ], "total": 0, "shortcuts": { "property1": "string", "property2": "string" } }
Schema name in format 'company:domain:version' (e.g. 'acme:support_tickets:1.0.0')
Human-readable description
Human-readable description
Human-readable description
Frequency field definitions (1-14 fields, one per frequency band)
Hz value (must be one of the 14 standard frequencies: 0.1, 0.5, 2.0, 4.0, 6.0, 10.0, 12.0, 18.0, 19.0, 24.0, 30.0, 40.0, 50.0, 70.0)
Field type
Allowed values for enum type
Allowed values for enum type
Field description
Field description
Field description
curl -i -X POST \
https://memoryserver-staging-223473570766.us-west1.run.app/v1/holographic/domains \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"description": "Support ticket classification schema",
"fields": [
{
"frequency": 4,
"name": "priority",
"type": "enum",
"values": [
"P0",
"P1",
"P2",
"P3"
],
"weight": 0.9
},
{
"frequency": 6,
"name": "component",
"type": "free_text",
"weight": 0.7
},
{
"frequency": 12,
"name": "resolution_type",
"type": "enum",
"values": [
"bug_fix",
"config",
"wontfix"
],
"weight": 0.8
}
],
"name": "acme:support_tickets:1.0.0"
}'{ "status": "success", "schema_id": "string", "domain": "string", "num_frequencies": 0 }