Skip to main content
GET
/
esign
/
sessions
List signing sessions
curl --request GET \
  --url https://api.docsautomator.co/esign/sessions \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.docsautomator.co/esign/sessions"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.docsautomator.co/esign/sessions', 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.docsautomator.co/esign/sessions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$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.docsautomator.co/esign/sessions"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

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.docsautomator.co/esign/sessions")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.docsautomator.co/esign/sessions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "sessions": [
    {
      "id": "<string>",
      "documentName": "<string>",
      "signers": [
        {
          "index": 123,
          "email": "<string>",
          "name": "<string>",
          "status": "<string>"
        }
      ],
      "webhookParams": {
        "recId": "recAbC123XyZ",
        "orderId": "ORD-123"
      },
      "expiresAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}
{
"error": "Incorrect or missing API key"
}

Authorizations

Authorization
string
header
required

API key from your workspace settings. Pass as Authorization: Bearer <key> or X-API-Key: <key>. Find it at app.docsautomator.co/settings/workspace/api.

Query Parameters

status
enum<string>

Filter by session status.

Available options:
pending,
in_progress,
completed,
declined,
cancelled
email
string

Filter by signer email (partial match, case-insensitive).

page
integer
default:1

Page number.

limit
integer
default:20

Results per page (max 250).

Required range: x <= 250

Response

Signing sessions list

sessions
object[]
pagination
object
Last modified on June 12, 2026