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 Nodes
        • POSTGet User Nodes
        • GETGet Entity Edges for a node
        • GETGet Episodes for a node
        • GETGet Node
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraphNode

Get Node

GET
https://api.getzep.com/api/v2/graph/node/:uuid
GET
/api/v2/graph/node/:uuid
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.node.get(
7 uuid_="uuid",
8)
1{
2 "created_at": "string",
3 "name": "string",
4 "summary": "string",
5 "uuid": "string",
6 "attributes": {},
7 "labels": [
8 "string"
9 ]
10}
Returns a specific node by its UUID.
Was this page helpful?
Previous

Returns a fact by UUID

Next
Built with

Path parameters

uuidstringRequired
Node UUID

Response

Node
created_atstring
Creation time of the node
namestring
Name of the node
summarystring
Regional summary of surrounding edges
uuidstring
UUID of the node
attributesmap from strings to any
Additional attributes of the node. Dependent on node labels
labelslist of strings
Labels associated with the node

Errors

400
Bad Request Error
404
Not Found Error
500
Internal Server Error