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 Batches

GET
https://api.getzep.com/api/v2/batches
GET
/api/v2/batches
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.batch.list(
7 limit=1,
8 cursor=1,
9 status="status",
10)
1{
2 "batches": [
3 {
4 "batch_id": "string",
5 "completed_at": "string",
6 "created_at": "string",
7 "item_count": 1,
8 "metadata": {},
9 "processed_at": "string",
10 "progress": {
11 "failed_items": 1,
12 "percent_complete": 1.1,
13 "processing_items": 1,
14 "queued_items": 1,
15 "skipped_items": 1,
16 "succeeded_items": 1,
17 "total_items": 1
18 },
19 "status": "draft",
20 "updated_at": "string"
21 }
22 ],
23 "next_cursor": 1
24}
List batches for the current project, optionally filtered by batch status.
Was this page helpful?
Previous

Get Batch

Next
Built with

Query parameters

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

Response

Batch list
batcheslist of objects
next_cursorinteger

Errors

400
Bad Request Error
403
Forbidden Error
500
Internal Server Error