Skip to main content
Start with the NEUS JavaScript SDK for proof creation, hosted handoff, polling, and private proof access. The JavaScript SDK is the primary client surface for custom browser and app integrations. It wraps verification creation, deterministic signing helpers, hosted verify handoff, proof polling, and widget exports in one package.

What the SDK Covers

Install

npm install @neus/sdk

Quick Start

import { NeusClient } from '@neus/sdk';

const client = new NeusClient({
  apiUrl: 'https://api.neus.network',
  appId: 'acme-web'
});

Next Steps