Skip to main content
GET
/
graph
/
entities
List Graph Entities
curl --request GET \
  --url https://api.velixarai.com/graph/entities \
  --header 'Authorization: Bearer <token>'
{
  "entities": [
    {}
  ]
}
Returns entities extracted from your memories — people, projects, technologies, concepts, and their properties.

Query Parameters

limit
integer
default:"20"
Maximum entities to return (max 100).

Response

{
  "entities": [
    {
      "id": "node-abc123",
      "entity_type": "technology",
      "label": "PostgreSQL",
      "properties": {
        "description": "Primary database",
        "salience": 0.85
      }
    }
  ]
}
entities
array
Array of graph entities with type, label, and properties.