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
      • PUTSet graph ontology
      • GETList graph ontology
      • POSTAdd Data
      • POSTAdd Data in batch mode
      • POSTAdd Fact Triple
      • POSTClone graph
      • POSTCreate Graph
      • GETList all graphs.
      • POSTDetect Patterns (Experimental)
      • POSTSearch Graph
      • GETGet Graph
      • DELDelete Graph
      • PATCHUpdate Graph.
        • GETList Custom Instructions
        • POSTAdd Custom Instructions
        • DELDelete Custom Instructions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraphCustom Instructions

List Custom Instructions

GET
https://api.getzep.com/api/v2/custom-instructions
GET
/api/v2/custom-instructions
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.list_custom_instructions(
7 user_id="user_id",
8 graph_id="graph_id",
9)
1{
2 "instructions": [
3 {
4 "name": "string",
5 "text": "string"
6 }
7 ]
8}
Lists all custom instructions for a project, user, or graph.
Was this page helpful?
Previous

Add Custom Instructions

Next
Built with

Query parameters

user_idstringOptional

User ID to get user-specific instructions

graph_idstringOptional

Graph ID to get graph-specific instructions

Response

The list of instructions.
instructionslist of objects

Errors

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