Skip to main content

TypeScript SDK

Install the official SDK:

npm install @procureiq/sdk

What it includes

  • Generated API client surface from the OpenAPI spec
  • Convenience ProcureIQClient wrapper
  • Nicer method aliases for common workflows
  • Webhook signature verification helper

Example

import { ProcureIQClient } from "@procureiq/sdk";

const client = new ProcureIQClient({ apiKey: process.env.PROCUREIQ_API_KEY });
const products = await client.products.searchProducts({ q: "industrial fans", limit: 10 });

For deeper usage patterns, see packages/sdk-ts/README.md in the repository.