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
      • POSTCreate Batch
      • POSTAdd Batch Items
      • POSTProcess Batch
      • GETList Batches
      • GETGet Batch
      • DELDelete Batch
      • GETList Batch Items
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceBatch

List Batch Items

GET
https://api.getzep.com/api/v2/batches/:batchId/items
GET
/api/v2/batches/:batchId/items
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.batch.list_items(
7 batch_id="batchId",
8 limit=1,
9 cursor=1,
10 status="status",
11)
1{
2 "items": [
3 {
4 "created_at": "string",
5 "episode_uuid": "string",
6 "error": {},
7 "graph_id": "string",
8 "item_id": "string",
9 "kind": "graph_episode",
10 "sequence_index": 1,
11 "source_uuid": "string",
12 "status": "pending",
13 "thread_id": "string",
14 "updated_at": "string",
15 "user_id": "string"
16 }
17 ],
18 "next_cursor": 1
19}
List items in a batch, including derived runtime status when the batch has been processed.
Was this page helpful?
Previous
Built with

Path parameters

batchIdstringRequired
The batch ID.

Query parameters

limitintegerOptional
Maximum number of batch items to return.
cursorintegerOptional
Pagination cursor from a previous response.
statusstringOptional
Batch item status filter.

Response

Batch item list
itemslist of objects
next_cursorinteger

Errors

400
Bad Request Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error