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
      • GETGet Task
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceTask

Get Task

GET
https://api.getzep.com/api/v2/tasks/:task_id
GET
/api/v2/tasks/:task_id
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.task.get(
7 task_id="task_id",
8)
1{
2 "completed_at": "string",
3 "created_at": "string",
4 "error": {
5 "code": "string",
6 "details": {},
7 "message": "string"
8 },
9 "params": {},
10 "progress": {
11 "message": "string",
12 "stage": "string"
13 },
14 "started_at": "string",
15 "status": "string",
16 "task_id": "string",
17 "type": "string",
18 "updated_at": "string"
19}
Gets a task by its ID
Was this page helpful?
Previous

Create Batch

Next
Built with

Path parameters

task_idstringRequired
Task ID

Response

Task
completed_atstring
created_atstring
errorobject
paramsmap from strings to any
progressobject
started_atstring
statusstring
task_idstring
typestring
updated_atstring

Errors

404
Not Found Error
500
Internal Server Error