✨Works out of the box guarantee. If you face any issue at all, hit us up on Telegram and we will write the integration for you.

Backend Flow
Installation

Installing the Reclaim Protocol SDK for Backend

Welcome to the guide on integrating Reclaim Protocol into your backend project! This guide will walk you through the installation process for both JavaScript and Python implementations.

Prerequisites

Before you begin, make sure you have the appropriate environment set up:

For JavaScript:

  • Node.js (version 14 or later)
  • npm (usually comes with Node.js) or yarn

For Python:

  • Python (version 3.7 or later)
  • pip (Python package manager)

Installation Steps

Installing JavaScript SDK

Open your terminal and navigate to your project directory. Then run one of the following commands:

Using npm:

npm install @reclaimprotocol/js-sdk

Using yarn:

yarn add @reclaimprotocol/js-sdk

Verify Installation

Check your package.json file. You should see @reclaimprotocol/js-sdk listed in the dependencies section.

Importing the SDK

const { ReclaimProofRequest } = require('@reclaimprotocol/js-sdk');

Next Steps

Congratulations! You've successfully installed the Reclaim Protocol SDK. Here's what you can do next:

  1. Check out the Backend Example guide to create your first proof request on the server-side.
  2. Learn about Advanced Configuration options to customize the SDK for your needs.

If you encounter any issues during installation, please refer to our FAQ (opens in a new tab) or join our Telegram community (opens in a new tab) for support.

Happy coding with Reclaim Protocol on your backend!