Surepass
Stamps

Download stamp PDF

View as Markdown
GET
/api/v1/stamps/download-pdf

Get the vendor-provided download URL for a completed stamp PDF. PDF bytes are not streamed through the API — the response contains a short-lived signed URL.

Pass the stamp instance ID (stamps[].stamp_id from order-status or list), not the order ID.

Authorization

bearerAuth
AuthorizationBearer <token>

Bearer token authentication — paste your access token below.

In: header

Query Parameters

client_id*string

Stamp instance client ID (stamp_inst_...).

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/stamps/download-pdf?client_id=string"
{  "data": {    "stamp_id": "stamp_inst_uNeOUwjMVGNFexnxFSCP",    "url": "https://example-bucket.s3.amazonaws.com/sample-estamp.pdf?X-Amz-Signature=...",    "expires_in": 3600,    "page_count": 1  },  "status_code": 200,  "message": "Success",  "success": true}