curl --request GET \
--url https://api.tomorro.com/v2/contracts/{id}/signing-files \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tomorro.com/v2/contracts/{id}/signing-files"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tomorro.com/v2/contracts/{id}/signing-files', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tomorro.com/v2/contracts/{id}/signing-files",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tomorro.com/v2/contracts/{id}/signing-files"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tomorro.com/v2/contracts/{id}/signing-files")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tomorro.com/v2/contracts/{id}/signing-files")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"contractId": "9aa01b69-5f3d-4c8e-b2a7-1d6e0f4c8b93",
"firstSigningParty": "member",
"files": [
{
"id": "eeaa7b6d-2c31-4f9a-8d64-3e0b5a7c1d22",
"isMain": true,
"order": 1,
"filename": "NDA - Train.pdf",
"contentType": "application/pdf",
"downloadUrl": "https://s3.amazonaws.com/bucket/path?X-Amz-Signature=...",
"expiresAt": "2026-09-07T10:15:00.000Z",
"pages": [
{
"width": 595,
"height": 842
}
],
"fields": []
}
],
"signatories": [
{
"id": "a255ff48-9d3c-4a7e-8f21-0c5b6d2e9a14",
"name": "John Doe",
"email": "john.doe@tomorro.com",
"type": "member",
"title": "CEO",
"order": 1
}
]
}Get contract signing files
Returns everything a signature tool needs to run the signing ceremony for a contract that was sent for signature: the files to sign with short-lived pre-signed download URLs and page dimensions, the position of every signature and initials field on them, and the signatories. Typically called after receiving the signature.requested webhook. URLs expire after 5 minutes; re-call the endpoint to obtain fresh ones.
curl --request GET \
--url https://api.tomorro.com/v2/contracts/{id}/signing-files \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tomorro.com/v2/contracts/{id}/signing-files"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tomorro.com/v2/contracts/{id}/signing-files', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tomorro.com/v2/contracts/{id}/signing-files",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tomorro.com/v2/contracts/{id}/signing-files"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tomorro.com/v2/contracts/{id}/signing-files")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tomorro.com/v2/contracts/{id}/signing-files")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"contractId": "9aa01b69-5f3d-4c8e-b2a7-1d6e0f4c8b93",
"firstSigningParty": "member",
"files": [
{
"id": "eeaa7b6d-2c31-4f9a-8d64-3e0b5a7c1d22",
"isMain": true,
"order": 1,
"filename": "NDA - Train.pdf",
"contentType": "application/pdf",
"downloadUrl": "https://s3.amazonaws.com/bucket/path?X-Amz-Signature=...",
"expiresAt": "2026-09-07T10:15:00.000Z",
"pages": [
{
"width": 595,
"height": 842
}
],
"fields": []
}
],
"signatories": [
{
"id": "a255ff48-9d3c-4a7e-8f21-0c5b6d2e9a14",
"name": "John Doe",
"email": "john.doe@tomorro.com",
"type": "member",
"title": "CEO",
"order": 1
}
]
}Authorizations
API key for authentication. Get your key at https://app.tomorro.com/settings/integrations?integration=api-key
Path Parameters
The unique identifier (UUID) of the contract
"550e8400-e29b-41d4-a716-446655440000"
Response
Files to sign, their fields, and the signatories
Unique identifier (UUID) of the contract.
"9aa01b69-5f3d-4c8e-b2a7-1d6e0f4c8b93"
Side that must sign first, null when the signature is not ordered. Combine it with signatories[].order to rebuild the full signing sequence: this party first, its signatories by ascending order, then the other party.
member, guest "member"
Files of the envelope, in signing order.
Show child attributes
Show child attributes
[ { "id": "eeaa7b6d-2c31-4f9a-8d64-3e0b5a7c1d22", "isMain": true, "order": 1, "filename": "NDA - Train.pdf", "contentType": "application/pdf", "downloadUrl": "https://s3.amazonaws.com/bucket/path?X-Amz-Signature=...", "expiresAt": "2026-09-07T10:15:00.000Z", "pages": [{ "width": 595, "height": 842 }], "fields": [] } ]
Everyone taking part in the signature.
Show child attributes
Show child attributes
[ { "id": "a255ff48-9d3c-4a7e-8f21-0c5b6d2e9a14", "name": "John Doe", "email": "john.doe@tomorro.com", "type": "member", "title": "CEO", "order": 1 } ]