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.
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.
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.
/verifyUpload 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"
{
"object": "verification",
"apiVersion": "2026-08-01",
"engine": "Panda",
"status": "valid",
"result": {
"...": "SigVerify verification result"
}
}
/meReturns the authenticated API account's remaining credits, status and usage total.
/healthReturns the Developer API service status. This endpoint does not require an API key.
| Status | Meaning |
|---|---|
| 401 | Invalid or missing API key |
| 402 | No API credits remaining |
| 403 | API key disabled/revoked |
| 415 | PDF required |
| 429 | Rate limit exceeded |
| 500 | Verification/service error |
| Plan | Credits | Price | Rate |
|---|---|---|---|
| Starter | 100 | ₹3,000 | ₹30 |
| Growth | 500 | ₹12,500 | ₹25 |
| Scale | 2,000 | ₹40,000 | ₹20 |
| Business | 10,000 | ₹1,50,000 | ₹15 |
There is no free API credit tier. API credits are separate from normal SigVerify retail credits.
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.