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 list of DocumentCollections

Deprecated
GET
https://api.getzep.com/api/v2/collections
GET
/api/v2/collections
$curl https://api.getzep.com/api/v2/collections \
> -H "Authorization: <apiKey>"
1[
2 [
3 {
4 "created_at": "string",
5 "description": "string",
6 "document_count": 1,
7 "document_embedded_count": 1,
8 "embedding_dimensions": 1,
9 "embedding_model_name": "string",
10 "is_auto_embedded": true,
11 "is_indexed": true,
12 "is_normalized": true,
13 "metadata": {},
14 "name": "string",
15 "updated_at": "string",
16 "uuid": "string"
17 }
18 ]
19]
Returns a list of all DocumentCollections.
Was this page helpful?
Previous

Gets a DocumentCollection

Next
Built with

Response

OK
created_atstring
descriptionstring
document_countinteger
document_embedded_countinteger
embedding_dimensionsinteger
embedding_model_namestring
is_auto_embeddedboolean
is_indexedboolean
is_normalizedboolean
metadatamap from strings to any
namestring
updated_atstring
uuidstring

Errors

401
Unauthorized Error
500
Internal Server Error