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 Threads

GET
https://api.getzep.com/api/v2/users/:userId/threads
GET
/api/v2/users/:userId/threads
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.user.get_threads(
7 user_id="userId",
8)
1[
2 {
3 "created_at": "string",
4 "project_uuid": "string",
5 "thread_id": "string",
6 "user_id": "string",
7 "uuid": "string"
8 }
9]
Returns all threads for a user.
Was this page helpful?
Previous

Warm User Cache

Next
Built with

Path parameters

userIdstringRequired
User ID

Response

OK
created_atstring
project_uuidstring
thread_idstring
user_idstring
uuidstring

Errors

500
Internal Server Error