Skip to main content
GET
/
contracts
/
{id}
/
signed-files
Get contract signed files
curl --request GET \
  --url https://api.tomorro.com/v2/contracts/{id}/signed-files \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "filename": "NDA - Acme Corp - signed.pdf",
    "contentType": "application/pdf",
    "downloadUrl": "https://s3.amazonaws.com/bucket/path?X-Amz-Signature=...",
    "expiresAt": "2026-04-24T10:45:00.000Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://alpha.developer.tomorro.com/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Get your key at https://app.tomorro.com/settings/integrations?integration=api-key

Path Parameters

id
string
required

The unique identifier (UUID) of the contract

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Signed files with download URLs

id
string
required

Unique identifier (UUID) of the signed file.

Example:

"550e8400-e29b-41d4-a716-446655440000"

filename
string
required

Filename of the signed file, normalized to end with .pdf.

Example:

"NDA - Acme Corp - signed.pdf"

contentType
string
required

MIME content type of the signed file.

Example:

"application/pdf"

downloadUrl
string
required

Short-lived pre-signed URL to download the signed PDF.

Example:

"https://s3.amazonaws.com/bucket/path?X-Amz-Signature=..."

expiresAt
string<date-time>
required

Date at which downloadUrl expires. Re-call the endpoint to obtain a fresh URL.

Example:

"2026-04-24T10:45:00.000Z"