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
        • GETGets a list of DocumentCollections
        • GETGets a DocumentCollection
        • POSTCreates a new DocumentCollection
        • DELDeletes a DocumentCollection
        • PATCHUpdates a DocumentCollection
        • POSTCreates Multiple Documents in a DocumentCollection
        • POSTBatch Deletes Documents from a DocumentCollection by UUID
        • POSTBatch Gets Documents from a DocumentCollection
        • PATCHBatch Updates Documents in a DocumentCollection
        • GETGets a Document from a DocumentCollection by UUID
        • DELDelete Document from a DocumentCollection by UUID
        • PATCHUpdates a Document
        • POSTSearches Documents in a DocumentCollection
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceDeprecatedDocument

Gets a Document from a DocumentCollection by UUID

Deprecated
GET
https://api.getzep.com/api/v2/collections/:collectionName/documents/uuid/:documentUUID
GET
/api/v2/collections/:collectionName/documents/uuid/:documentUUID
$curl https://api.getzep.com/api/v2/collections/collectionName/documents/uuid/documentUUID \
> -H "Authorization: <apiKey>"
1{
2 "content": "string",
3 "created_at": "string",
4 "document_id": "string",
5 "embedding": [
6 1.1
7 ],
8 "is_embedded": true,
9 "metadata": {},
10 "updated_at": "string",
11 "uuid": "string"
12}
Returns specified Document from a DocumentCollection.
Was this page helpful?
Previous

Delete Document from a DocumentCollection by UUID

Next
Built with

Path parameters

collectionNamestringRequired
Name of the Document Collection
documentUUIDstringRequired
UUID of the Document to be updated

Response

OK
contentstring
created_atstring
document_idstring
embeddinglist of doubles
is_embeddedboolean
metadatamap from strings to any
updated_atstring
uuidstring

Errors

400
Bad Request Error
401
Unauthorized Error
500
Internal Server Error