Check digital PDF signatures: who signed (certificate), when, and whether the document is unchanged since signing. No CA trust-chain validation – the response says so explicitly.
| Name | Type | Description |
|---|---|---|
file | file · required | PDF to check. |
curl -X POST https://api.bigapi.dev/v1/pdf/verify-signature -H 'Authorization: Bearer $KEY' -F 'file=@contract.pdf'
{
"signed": true, "signature_count": 1,
"signatures": [ {
"signer": { "common_name": "Jane Doe", "organization": "Acme", "self_signed": false },
"integrity": { "digest_matches": true, "byte_range_covers_document": true }
} ],
"trust_note": "Integrity check without CA chain validation..."
}