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

Batch Gets Documents from a DocumentCollection

Deprecated
POST
https://api.getzep.com/api/v2/collections/:collectionName/documents/batchGet
POST
/api/v2/collections/:collectionName/documents/batchGet
$curl -X POST https://api.getzep.com/api/v2/collections/collectionName/documents/batchGet \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{}'
1[
2 [
3 {
4 "content": "string",
5 "created_at": "string",
6 "document_id": "string",
7 "embedding": [
8 1.1
9 ],
10 "is_embedded": true,
11 "metadata": {},
12 "updated_at": "string",
13 "uuid": "string"
14 }
15 ]
16]
Returns Documents from a DocumentCollection specified by UUID or ID.
Was this page helpful?
Previous

Batch Updates Documents in a DocumentCollection

Next
Built with

Path parameters

collectionNamestringRequired
Name of the Document Collection

Request

UUIDs and IDs of the Documents to be fetched
document_idslist of stringsOptional
uuidslist of stringsOptional

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