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 Sessions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceUser

Get User

GET
https://api.getzep.com/api/v2/users/:userId
GET
/api/v2/users/:userId
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.user.get(
7 user_id="userId",
8)
1{
2 "created_at": "string",
3 "deleted_at": "string",
4 "email": "string",
5 "fact_rating_instruction": {
6 "examples": {
7 "high": "string",
8 "low": "string",
9 "medium": "string"
10 },
11 "instruction": "string"
12 },
13 "first_name": "string",
14 "id": 1,
15 "last_name": "string",
16 "metadata": {},
17 "project_uuid": "string",
18 "session_count": 1,
19 "updated_at": "string",
20 "user_id": "string",
21 "uuid": "string"
22}
Returns a user.
Was this page helpful?
Previous

Delete User

Next
Built with

Path parameters

userIdstringRequired

The user_id of the user to get.

Response

The user that was retrieved.
created_atstring
deleted_atstring
emailstring
fact_rating_instructionobject
first_namestring
idinteger
last_namestring
metadatamap from strings to any
Deprecated
project_uuidstring
session_countinteger
Deprecated
updated_atstring
Deprecated
user_idstring
uuidstring

Errors

404
Not Found Error
500
Internal Server Error