Skip to Main Content
|

Build Document Verification Apps

Integrate Setara's document verification into your applications with our REST API. Register documents, verify hashes, and manage organization wallets — all with simple HTTP calls.

Quick Start — Build an App

Register your organization, get an API key, and make your first document registration in 4 steps. Available in curl, Node.js, Python, and Go.

curl -X POST https://api.setara.network/api/v1/register \
-H "Content-Type: application/json" \
-d '{"name":"MyOrg","email":"admin@myorg.in"}'
Read Build Guide

Run a Validator Node

Deploy your organization's validator node via Docker Compose. Includes IPFS, the Setara chain binary, and automatic peer discovery. Minimum: 2 CPU, 4GB RAM, 100GB SSD.

git clone https://github.com/setara-network/setara \
cd docker && docker compose up -d
View Node Setup Guide