Overview
GET/processing/jobsprocessing

List ecosystem jobs (management)

List the caller's ecosystem jobs, newest first. Requires a user JWT. Optional ?status= filter and ?limit= cap (default 50, max 200).

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • statusquery · optional"queued" | "claimed" | "succeeded" | "dead"

    Filter to a specific job lifecycle status; absent = all statuses

  • limitquery · optionalinteger

    Max rows to return; default 50, capped at 200

Responses
200

Ecosystem jobs

  • jobsAiProcessingJob[]
Example
{
  "jobs": [
    {
      "id": "string",
      "jobType": "string",
      "targetKind": "string",
      "targetId": "string",
      "status": "string",
      "priority": 0,
      "attempts": 0,
      "maxAttempts": 0,
      "createdAt": "string",
      "updatedAt": "string"
    }
  ]
}
400

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/processing/jobs" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/processing/jobs", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();