GET · Get entities

List canonical entities mentioned across memories (people, orgs, projects, tech).

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

ParamTypeDefaultNotes
qstringTrigram fuzzy match on display_name + aliases
typestringperson / organization / project / technology / place / decision / event / concept / other
limitint501..200
offsetint0

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).

Last updated 2026-05-24edit