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
        • GETReturns a fact by UUID
        • DELDelete a fact for the given UUID
        • POSTEnd multiple sessions.
        • POSTSearch sessions for the specified query.
        • PATCHUpdate a session.
        • POSTDeprecated: Classify Session
        • POSTEnd a session
        • GETReturns all facts for a session by ID
        • POSTAdds facts to a session
        • GETGet Message
        • PATCHUpdates the metadata of a message.
        • POSTDeprecated: Use search_sessions method instead
        • GETReturns a session's summaries by ID
        • GETSynthesize a question
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceDeprecatedMemory

Returns a fact by UUID

Deprecated
GET
https://api.getzep.com/api/v2/facts/:factUUID
GET
/api/v2/facts/:factUUID
$curl https://api.getzep.com/api/v2/facts/factUUID \
> -H "Authorization: <apiKey>"
1{
2 "fact": {
3 "content": "string",
4 "created_at": "string",
5 "fact": "string",
6 "uuid": "string",
7 "expired_at": "string",
8 "invalid_at": "string",
9 "name": "string",
10 "rating": 1.1,
11 "source_node_name": "string",
12 "target_node_name": "string",
13 "valid_at": "string"
14 }
15}

Deprecated API: get fact by uuid

Was this page helpful?
Previous

Delete a fact for the given UUID

Next
Built with

Path parameters

factUUIDstringRequired
Fact UUID

Response

The fact with the specified UUID.
factobject

Errors

404
Not Found Error
500
Internal Server Error