Skip to main content
GET
https://agent.usedari.com
/
task
/
{org_id}
/
{endpoint_name}
/
status
curl "https://agent.usedari.com/task/my-org/contact_form/status?job_id=550e8400-e29b-41d4-a716-446655440000" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "portal_id": "my-org/contact_form",
  "status": "running",
  "browser_url": "https://hyperbrowser.ai/view/abc123",
  "current_step": "Filling email field",
  "events": [
    {
      "event_type": "started",
      "message": "Job started",
      "data": {},
      "timestamp": "2025-01-15T10:30:00Z"
    },
    {
      "event_type": "step_completed",
      "message": "Filled first name",
      "data": {"step": "firstName"},
      "timestamp": "2025-01-15T10:30:15Z"
    }
  ],
  "result": null,
  "final_result": null,
  "error": null,
  "downloads_link": null,
  "video_recording_url": null,
  "log_url": null,
  "total_cost_usd": 0.12,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:15Z"
}
Returns the full status of a job including events, results, and error information.

Path Parameters

org_id
string
required
Organization ID
endpoint_name
string
required
Portal endpoint name

Query Parameters

job_id
string
required
UUID of the job

Headers

X-API-Key
string
required
Organization API key

Response Fields

job_id
string
UUID of the job
portal_id
string
Portal identifier
status
string
Job status: pending, running, paused, completed, or failed
browser_url
string
Live browser URL
current_step
string
Description of what the agent is currently doing
events
object[]
Ordered list of job events
result
object
Intermediate result data
final_result
object
Final structured result matching the portal’s output_schema
error
string
Error message if the job failed
URL to download any files generated during the job
video_recording_url
string
URL to the video recording of the browser session
log_url
string
URL to the full agent log
total_cost_usd
number
Total cost of the job in USD
created_at
string
ISO 8601 creation timestamp
updated_at
string
ISO 8601 update timestamp
curl "https://agent.usedari.com/task/my-org/contact_form/status?job_id=550e8400-e29b-41d4-a716-446655440000" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "portal_id": "my-org/contact_form",
  "status": "running",
  "browser_url": "https://hyperbrowser.ai/view/abc123",
  "current_step": "Filling email field",
  "events": [
    {
      "event_type": "started",
      "message": "Job started",
      "data": {},
      "timestamp": "2025-01-15T10:30:00Z"
    },
    {
      "event_type": "step_completed",
      "message": "Filled first name",
      "data": {"step": "firstName"},
      "timestamp": "2025-01-15T10:30:15Z"
    }
  ],
  "result": null,
  "final_result": null,
  "error": null,
  "downloads_link": null,
  "video_recording_url": null,
  "log_url": null,
  "total_cost_usd": 0.12,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:15Z"
}