SigVerify Developer API 🐼
← Developer portal
PANDA DEVELOPER API V1

Developer API Documentation

Server-to-server access to SigVerify's Panda verification engine. The Developer API is available through the web platform only and has no free API credits.

Base URL
https://sigverfiy.in/api/v1

Keep your API key on your own backend. Never expose it in browser JavaScript, Android APK/AAB files, or public repositories.

Authentication

Send your secret API key with every request:

X-API-Key: sv_live_YOUR_KEY

Keys are created and managed from the authenticated Developer Portal.

Verify a PDF

POST /verify

Upload one signed PDF. One API credit is consumed after Panda returns a verification result.

curl -X POST /api/v1/verify   -H "X-API-Key: sv_live_YOUR_KEY"   -F "file=@signed-document.pdf"

Response

{
  "object": "verification",
  "apiVersion": "2026-08-01",
  "engine": "Panda",
  "status": "valid",
  "result": {
    "...": "SigVerify verification result"
  }
}

Account

GET /me

Returns the authenticated API account's remaining credits, status and usage total.

GET /health

Returns the Developer API service status. This endpoint does not require an API key.

HTTP errors

StatusMeaning
401Invalid or missing API key
402No API credits remaining
403API key disabled/revoked
415PDF required
429Rate limit exceeded
500Verification/service error

Pricing

PlanCreditsPriceRate
Starter100₹3,000₹30
Growth500₹12,500₹25
Scale2,000₹40,000₹20
Business10,000₹1,50,000₹15

There is no free API credit tier. API credits are separate from normal SigVerify retail credits.

Panda result

The API returns the same core verification result produced by SigVerify's Panda engine, including signature, certificate, trust and evidence fields when available.

Public API endpoint: https://sigverfiy.in/api/v1. If your hosting layer does not proxy /api/v1 to the backend yet, use the Developer Portal after the backend routing is enabled.