ProofGrid API Documentation

Complete integration guides and API reference for adding enterprise authentication to your applications

5-minute integration

✓ Multiple SDKs available

✓ Enterprise-ready security

Get Started in 5 Minutes

Step 1: Install SDK

npm install @proofgrid/auth

Step 2: Initialize ProofGrid

import ProofGrid from '@proofgrid/auth';

const auth = new ProofGrid({

apiKey: 'your_api_key_here',

environment: 'test' // or 'live'

});

Step 3: Implement Login

// Basic email/password authentication

const session = await auth.signIn({

email: 'user@example.com',

password: 'password'

});

console.log('User authenticated:', session.user);

Step 4: Verify Authentication

// Check if user is authenticated

const currentUser = auth.getCurrentUser();

if (currentUser) {

console.log('User is logged in:', currentUser.email);

}

Add ProofGrid authentication to your application with just a few API calls. No complex setup required.

Step-by-Step Process: