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 Edge

GET
https://api.getzep.com/api/v2/graph/edge/:uuid
GET
/api/v2/graph/edge/:uuid
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.edge.get(
7 uuid_="uuid",
8)
1{
2 "created_at": "string",
3 "fact": "string",
4 "name": "string",
5 "source_node_uuid": "string",
6 "target_node_uuid": "string",
7 "uuid": "string",
8 "attributes": {},
9 "episodes": [
10 "string"
11 ],
12 "expired_at": "string",
13 "invalid_at": "string",
14 "valid_at": "string"
15}
Returns a specific edge by its UUID.
Was this page helpful?
Previous

Delete Edge

Next
Built with

Path parameters

uuidstringRequired
Edge UUID

Response

Edge
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
404
Not Found Error
500
Internal Server Error