Filtering by type
tags, namespace, and time bounds (e.g., before/after) for precise dataset slices.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Flumes automatically classifies each memory so you can filter and reason about them easily.
| Type | When it’s used | Example |
|---|---|---|
fact | Declarative information believed to be true | ”Paris is the capital of France.” |
event | Time-stamped occurrence | ”Chatted about Rome museums on 2024-07-01.” |
document | Longer-form text or chunked content | An article or PDF excerpt |
note | Freeform note | ”Follow up about tickets.” |
profile | Attributes about an entity | ”ent:user_123 has premium=true.” |
chunk | Arbitrary indexed snippet | Any raw passage |
curl -s "https://api.flumes.ai/v0/memories?type=fact&status=active&namespace=default&limit=20" \
-H "Authorization: Bearer $FLUMES_API_KEY"
tags, namespace, and time bounds (e.g., before/after) for precise dataset slices.
{
"type": "fact",
"subject": "ent:user_123",
"predicate": "likes_city",
"object_text": "Rome",
"object_type": "string",
"keys": ["ent:user_123|likes_city"],
"confidence": 0.9,
"status": "active"
}
{
"type": "event",
"actor": "ent:user_123",
"verb": "chatted",
"target": "ent:assistant",
"timestamp": "2024-07-01T12:34:56Z",
"namespace": "default"
}
