> ## 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.

# Signature Requests

> Create, send, update, and manage signature requests; download files and signing links.

The Signature Requests API lets you build complete eSignature workflows — from creating and sending requests to tracking signer progress and downloading signed documents.

## Key concepts

* **Signature Request** — a document sent to one or more signers for legally-binding electronic signatures.
* **Signer** — a recipient who must review and sign the document. Each signer receives a unique signing link.
* **Signing Link** — a URL that opens the hosted signing experience for a specific signer (redirect flows).
* **Signing Session** — a short-lived `sign_url` for embedding the signing experience inline with the Embed Signing SDK.
* **Template** — a reusable document with pre-defined signature fields. Use `Send from Template` to create requests without re-uploading files each time.

## Typical workflow

1. **Send** a signature request with documents and signer details (or use a template).
2. **Deliver signing** to each signer — use [Create Signing Session](/tabs/api-reference/api/signature-requests/create-signing-session) for embedded signing, or [Get Signing Link](/tabs/api-reference/api/signature-requests/get-signing-link) for redirect flows.
3. **Monitor** the request status via the [Get Signature Request](/tabs/api-reference/api/signature-requests/get-signature-request) endpoint or [webhooks](/tabs/guides/webhooks/overview).
4. **Download** the signed agreement, Certificate of Completion (CoC), or merged PDF once all signers have completed.

## Available endpoints

<CardGroup cols={2}>
  <Card title="Get Signature Request" icon="file-lines" href="/tabs/api-reference/api/signature-requests/get-signature-request">
    Returns the information of the signature request.
  </Card>

  <Card title="Update Signature Request" icon="pen-to-square" href="/tabs/api-reference/api/signature-requests/update-signature-request">
    Update the due date of an existing signature request.
  </Card>

  <Card title="Send Signature Request" icon="paper-plane" href="/tabs/api-reference/api/signature-requests/send-signature-request">
    Creates and sends a new signature request with the submitted documents.
  </Card>

  <Card title="Send Signature Request from Template" icon="file-contract" href="/tabs/api-reference/api/signature-requests/send-signature-request-from-template">
    Creates and sends a new signature request from a template with the submitted template data.
  </Card>

  <Card title="Get Signing Link" icon="link" href="/tabs/api-reference/api/signature-requests/get-signing-link">
    Returns a hosted signing URL for redirect flows.
  </Card>

  <Card title="Create Signing Session" icon="window-maximize" href="/tabs/api-reference/api/signature-requests/create-signing-session">
    Returns a short-lived sign\_url for the Embed Signing SDK.
  </Card>

  <Card title="Send Reminder Emails" icon="envelope" href="/tabs/api-reference/api/signature-requests/send-reminder-emails">
    Send reminder emails to signers who still need to sign.
  </Card>

  <Card title="Cancel Signature Request" icon="ban" href="/tabs/api-reference/api/signature-requests/cancel-signature-request">
    Cancel a signature request.
  </Card>

  <Card title="Get Signature Request File" icon="download" href="/tabs/api-reference/api/signature-requests/get-signature-request-file">
    Obtain agreement, CoC, or merged PDF via signed URL or binary response.
  </Card>
</CardGroup>
