Skip to main content
GET
/
v1
/
signatures
List signature requests
curl --request GET \
  --url https://api.craftkit.dev/v1/signatures \
  --header 'Authorization: Bearer <token>'
{
  "signatures": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "renderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "recipients": [
        {
          "id": "<string>",
          "firstName": "<string>",
          "email": "jsmith@example.com",
          "lastName": "<string>",
          "order": 123,
          "signedAt": "2023-11-07T05:31:56Z",
          "declinedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "expirationHours": 123,
      "signedDownloadUrl": "<string>",
      "certificateUrl": "<string>",
      "errorMessage": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "2023-11-07T05:31:56Z",
  "hasMore": true
}

Authorizations

Authorization
string
header
required

Project API key (ck_live_… or ck_test_…) presented as a bearer token. For embed partner endpoints this is the partner secret key, which is the same credential type.

Query Parameters

limit
integer
default:50

Page size (1–100).

Required range: 1 <= x <= 100
renderId
string<uuid>

Filter to a single render.

cursor
string<date-time>

Return rows created strictly before this ISO timestamp.

Response

Signature requests.

signatures
object[]
required
nextCursor
string<date-time> | null
required
hasMore
boolean
required