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.
      • GETWarm Graph Cache
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraph

Get Graph

GET
https://api.getzep.com/api/v2/graph/:graphId
GET
/api/v2/graph/:graphId
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.get(
7 graph_id="graphId",
8)
1{
2 "created_at": "string",
3 "description": "string",
4 "graph_id": "string",
5 "id": 1,
6 "name": "string",
7 "project_uuid": "string",
8 "uuid": "string"
9}
Returns a graph.
Was this page helpful?
Previous

Delete Graph

Next
Built with

Path parameters

graphIdstringRequired

The graph_id of the graph to get.

Response

The graph that was retrieved.
created_atstring
descriptionstring
graph_idstring
idinteger
namestring
project_uuidstring
uuidstring

Errors

404
Not Found Error
500
Internal Server Error