GET /api/entities
List the canonical entities extracted from your memories. Mnueron's entity pipeline (P2) recognizes people, organizations, projects, technologies, places, decisions, events, and concepts in memory content and consolidates them into stable rows in the entities table.
curl "https://www.mnueron.com/api/entities?type=person&limit=50" \
-H "Authorization: Bearer $MNUERON_API_TOKEN"
Query
| Param | Type | Default | Notes |
|---|---|---|---|
q | string | — | Trigram fuzzy match on display_name + aliases |
type | string | — | person / organization / project / technology / place / decision / event / concept / other |
limit | int | 50 | 1..200 |
offset | int | 0 |
Response
[
{
"id": "01HQ…",
"display_name": "Sarah Chen",
"entity_type": "person",
"aliases": ["sarah", "S. Chen"],
"mention_count": 14,
"first_seen_at": 1735000000000,
"last_seen_at": 1737070000000,
"metadata": {},
"score": 0.62
}
]
score is only present when q is set (trigram similarity).