curl --request GET \
--url https://api.tomorro.com/v2/contracts/{id}/signed-files \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tomorro.com/v2/contracts/{id}/signed-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}/signed-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}/signed-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}/signed-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}/signed-files")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tomorro.com/v2/contracts/{id}/signed-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[
{
"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"
}
]Get contract signed files
Returns every signed file attached to the contract’s signature, each with a short-lived pre-signed download URL and file metadata. Clients pick the file(s) they want to download. URLs expire after 30 seconds; re-call the endpoint to obtain fresh ones.
curl --request GET \
--url https://api.tomorro.com/v2/contracts/{id}/signed-files \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tomorro.com/v2/contracts/{id}/signed-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}/signed-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}/signed-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}/signed-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}/signed-files")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tomorro.com/v2/contracts/{id}/signed-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[
{
"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"
}
]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
Signed files with download URLs
Unique identifier (UUID) of the signed file.
"550e8400-e29b-41d4-a716-446655440000"
Filename of the signed file, normalized to end with .pdf.
"NDA - Acme Corp - signed.pdf"
MIME content type of the signed file.
"application/pdf"
Short-lived pre-signed URL to download the signed PDF.
"https://s3.amazonaws.com/bucket/path?X-Amz-Signature=..."
Date at which downloadUrl expires. Re-call the endpoint to obtain a fresh URL.
"2026-04-24T10:45:00.000Z"