Skip to main content
GET
/
{workspaceId}
/
web-tasks
/
{webTaskId}
/
result
webTaskResult
import { IntunedClient } from "@intuned/client";

const client = new IntunedClient({
  workspaceId: "123e4567-e89b-12d3-a456-426614174000",
  apiKey: process.env["INTUNED_API_KEY"] ?? "",
});

async function run() {
  const result = await client.webTasks.result("wt_123");

  console.log(result);
}

run();
{
  "webTaskId": "wt_123",
  "status": "pending",
  "createdAt": "2026-05-19T12:00:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://intunedhq.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API Key used to authenticate your requests. How to create one.

Path Parameters

workspaceId
string<uuid>
required

Your workspace ID. How to find it?

webTaskId
string
required

Web Task ID. Returned from the start endpoint as webTaskId.

Response

Web task status and (when terminal) result envelope.

Polled status + result envelope for GET /web-tasks/result/{webTaskId}. Discriminated by status; the 'completed' branch carries outcome plus outcome-specific fields (result/resultUrl on success, error on failure).

webTaskId
string
required

Unique web task id, prefixed nanoid (wt_...).

Example:

"wt_123"

status
enum<string>
required
Available options:
pending
createdAt
string<date-time>
required