Open access RESTful API for document verification and NFTitle Network lookups.
| Method | Endpoint | Description |
|---|---|---|
| GET | /public/v1/verify/:documentHash |
Verify document on NFTitle Network |
| GET | /public/v1/nftitle/lookup/:propertyId |
Lookup property records |
| GET | /public/v1/integrations/list |
List available integrations |
| GET | /public/v1/status/health |
API health check |
| GET | /public/v1/info |
API information |
- Per Minute: 30 requests
- Per Day: 1,000 requests
cd server
npm install
npm run seed # Populate sample data
npm run dev # Start development server# Verify a document
curl http://localhost:5000/public/v1/verify/0x7a8b9c1d2e3f...
# Lookup property
curl http://localhost:5000/public/v1/nftitle/lookup/PROP-2024-001234
# List integrations
curl http://localhost:5000/public/v1/integrations/list
# Health check
curl http://localhost:5000/public/v1/status/healthCopy .env.example to .env and configure:
PORT=5000
MONGO_URI=mongodb://localhost:27017/cipherbpa_public
CORS_ORIGIN=*
MIT - Ubitquity, LLC