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 DocumentCollection

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

Creates a new DocumentCollection

Next
Built with

Path parameters

collectionNamestringRequired
Name of the Document Collection

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

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