Skip to main content
GET
/
api
/
v1
/
context
/
add-async
/
status
List all ongoing context add jobs for the authenticated user
curl --request GET \
  --url https://platform-backend.getalchemystai.com/api/v1/context/add-async/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobs": [
    {
      "jobId": "<string>",
      "status": "<string>",
      "attemptsMade": 123,
      "failedReason": "<string>",
      "finishedOn": 123,
      "processedOn": 123,
      "data": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>
default:all

Type of jobs to list

Available options:
all,
active,
failed,
completed
limit
string
default:100

Maximum number of jobs to return

offset
string
default:0

Number of jobs to skip before starting to collect the result set

Response

List of jobs

success
boolean
jobs
object[]