Skip to main content
GET
/
signature_request
/
{signature_request_id}
/
file
Get Signature Request File
curl --request GET \
  --url https://api.luminpdf.com/v1/signature_request/{signature_request_id}/file \
  --header 'X-API-Key: <api-key>'
{
  "signed_url": "<string>",
  "expires_at": 123
}

Documentation Index

Fetch the complete documentation index at: https://developers.luminpdf.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Provide your API key in the X-API-Key header, e.g., X-API-Key: YOUR_API_KEY.

Path Parameters

signature_request_id
string
required

ID of the Signature Request.

Query Parameters

type
enum<string>
default:agreement

Which artifact to return:

  • agreement: The completed/signed agreement PDF
  • coc: The Certificate of Completion PDF
  • merged: A single PDF with agreement followed by the CoC
Available options:
agreement,
coc,
merged

Response

Returns the downloadable file of the Signature Request.

signed_url
string

Signed HTTPS URL to the requested artifact. Expires in 30 minutes.

expires_at
integer<unix-epoch>

Unix epoch timestamp (in seconds) indicating when signed_url will no longer work.