
Jul 20, 2026
September 16, 2025
The Parallel TypeScript SDK is generally available - bringing strongly typed interfaces to all Parallel APIs.

Starting today, the Parallel TypeScript SDK is generally available - bringing strongly typed interfaces to all Parallel APIs.
The TypeScript SDK provides a unified interface for the Task API and Search API with full type safety, built-in error handling, and support for modern JavaScript runtimes including Node.js, Deno, and browser-based environments.
The SDK simplifies integration while maintaining the full power of Parallel's web research infrastructure.
Key features include:
123456789import Parallel from 'parallel-web';
const client = new Parallel({
apiKey: process.env.PARALLEL_API_KEY,
});
const run = await client.taskRun.create({
input: "Summarize the latest developments in quantum computing",
processor: "lite",
});``` import Parallel from 'parallel-web';const client = new Parallel({ apiKey: process.env.PARALLEL_API_KEY,});const run = await client.taskRun.create({ input: "Summarize the latest developments in quantum computing", processor: "lite",}); ``` Install the TypeScript SDK:
1npm install parallel-web```npm install parallel-web```
Full documentation for the TypeScript SDK is available here[here](https://www.npmjs.com/package/parallel-web). The SDK is open source - contributions, feedback, and issue reports are welcome via GitHub[GitHub](https://github.com/parallel-web/parallel-sdk-typescript).
Sign up for free. No credit card required.
By Parallel
September 16, 2025