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
      • POSTAdd User
      • GETGet Users
      • GETGet User
      • DELDelete User
      • PATCHUpdate User
      • GETGet User Node
      • GETGet User Threads
      • GETWarm User Cache
      • GETList User Instructions
      • POSTAdd User Instructions
      • DELDelete User Instructions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceUser

Get User Node

GET
https://api.getzep.com/api/v2/users/:userId/node
GET
/api/v2/users/:userId/node
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.user.get_node(
7 user_id="userId",
8)
1{
2 "node": {
3 "created_at": "string",
4 "name": "string",
5 "summary": "string",
6 "uuid": "string",
7 "attributes": {},
8 "labels": [
9 "string"
10 ],
11 "relevance": 1.1,
12 "score": 1.1,
13 "selection_rank": 1
14 }
15}
Returns a user's node.
Was this page helpful?
Previous

Get User Threads

Next
Built with

Path parameters

userIdstringRequired

The user_id of the user to get the node for.

Response

Response object containing the User node.
nodeobject

Errors

404
Not Found Error
500
Internal Server Error