Webcrawler API LogoWebCrawlerAPI
APIAgent

GET /v1/agent/jobs

List all agent runs for your organization

Returns a paginated list of agent runs for your organization.

https://api.webcrawlerapi.com/v1/agent/jobs

Format: JSON
Method: GET

Query Parameters

  • limit - (optional) Number of results to return. Default 20.
  • offset - (optional) Number of results to skip for pagination. Default 0.

curl example

curl --request GET \
  --url 'https://api.webcrawlerapi.com/v1/agent/jobs?limit=20&offset=0' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'

Response

{
    "items": [
        {
            "id": "ar_abc123",
            "status": "done",
            "prompt": "Extract product names, prices, and descriptions",
            "model": "google/gemini-3.1-flash-lite-preview",
            "balance_used_usd": 0.03,
            "success": true,
            "created_at": "2025-01-01T00:00:00Z",
            "updated_at": "2025-01-01T00:01:30Z"
        }
    ],
    "total": 1
}

Response fields

  • items — array of AgentRun objects (see GET /v1/agent/job/{id} for full field list)
  • total — total number of runs across all pages

Error Responses

  • 401 Unauthorized - Invalid or missing API key
  • 500 Internal Server Error - Server-side error