Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@intuned/client

Package Overview
Dependencies
Maintainers
10
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intuned/client

TypeScript SDK for the Intuned public APIs.

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
284
-82.48%
Maintainers
10
Weekly downloads
 
Created
Source

Intuned Client SDK

Owned TypeScript SDK for the Intuned public APIs.

Installation

npm

npm add @intuned/client

pnpm

pnpm add @intuned/client

bun

bun add @intuned/client

yarn

yarn add @intuned/client

Getting Started

To get started, see the Intuned client API overview.

You will need:

  • an API key
  • a workspace ID

The SDK uses native fetch. In Node.js, use Node 18+ or provide a custom fetch implementation.

Usage

import { IntunedClient } from "@intuned/client";

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

const result = await client.projects.runs.start("my-project", {
  api: "my-awesome-api",
  parameters: { hello: "world" },
});

console.log(result);

Web Tasks

client.webTasks.run(body) is a convenience over webTasks.start + webTasks.result: it starts a Web Task and polls result until the task reaches a terminal state (status === "completed" or status === "canceled"). Branch on status and outcome to handle the response.

const terminal = await client.webTasks.run(
  {
    task: "Extract pricing from the homepage",
    startUrl: "https://example.com",
    parameters: {},
    outputSchema: { type: "object" },
  },
  { pollIntervalMs: 5_000 },
);

Keywords

intuned

FAQs

Package last updated on 20 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts