Skip to main content
GET
/
tasks
/
browser-use
List all browser-use tasks for profile
curl --request GET \
  --url https://gobii.ai/api/v1/tasks/browser-use/ \
  --header 'X-Api-Key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "prompt": "<string>",
  "output_schema": "<unknown>",
  "status": "pending",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "credits_cost": "<string>",
  "webhook": "<string>"
}

Authorizations

X-Api-Key
string
header
required

Response

200 - application/json
id
string<uuid>
agent_id
string<uuid>

ID of the browser-use agent to use for this task.

prompt
string | null
output_schema
any | null

Optional JSON schema to define structured output from the agent

status
enum<string>
  • pending - Pending
  • in_progress - In Progress
  • completed - Completed
  • failed - Failed
  • cancelled - Cancelled
Available options:
pending,
in_progress,
completed,
failed,
cancelled
created_at
string<date-time>
updated_at
string<date-time>
credits_cost
string<decimal> | null

Credits charged for this task; defaults to configured per‑task cost.

webhook
string<uri> | null

HTTP or HTTPS URL invoked when the task finishes.