For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • GETGet Entity Types
      • PUTSet Entity Types
      • POSTAdd Data
      • POSTAdd Data in batch mode
      • POSTAdd Fact Triple
      • POSTClone graph
      • POSTSearch Graph
        • POSTGet Group Edges
        • POSTGet User Edges
        • GETGet Edge
        • DELDelete Edge
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraphEdge

Get Group Edges

POST
https://api.getzep.com/api/v2/graph/edge/group/:group_id
POST
/api/v2/graph/edge/group/:group_id
$curl -X POST https://api.getzep.com/api/v2/graph/edge/group/group_id \
> -H "Content-Type: application/json" \
> -d '{}'
1[
2 {
3 "created_at": "string",
4 "fact": "string",
5 "name": "string",
6 "source_node_uuid": "string",
7 "target_node_uuid": "string",
8 "uuid": "string",
9 "attributes": {},
10 "episodes": [
11 "string"
12 ],
13 "expired_at": "string",
14 "invalid_at": "string",
15 "valid_at": "string"
16 }
17]
Returns all edges for a group.
Was this page helpful?
Previous

Get User Edges

Next
Built with

Path parameters

group_idstringRequired
Group ID

Request

Pagination parameters
limitintegerOptional
Maximum number of items to return
uuid_cursorstringOptional
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page

Response

Edges
created_atstring
Creation time of the edge
factstring
Fact representing the edge and nodes that it connects
namestring
Name of the edge, relation name
source_node_uuidstring
UUID of the source node
target_node_uuidstring
UUID of the target node
uuidstring
UUID of the edge
attributesmap from strings to any
Additional attributes of the edge. Dependent on edge types
episodeslist of strings
List of episode ids that reference these entity edges
expired_atstring
Datetime of when the node was invalidated
invalid_atstring
Datetime of when the fact stopped being true
valid_atstring
Datetime of when the fact became true

Errors

400
Bad Request Error
500
Internal Server Error