GET
/
v1
/
uploads
/
{upload_id}
// GET https://api.signatureapi.com/v1/uploads/{upload_id}
// X-API-Key: key_test_...
{
  "id": "upl_7kWstHtxXmje18omrlV6OA",
  "retention": "temporary",
  "url": "https://api.signatureapi.com/v1/uploads/upl_7kWstHtxXmje18omrlV6OA",
  "format": "docx",
  "sha_256": "89c8b8aec98e905a5f7d5f8cd23f6a9138b05f6f1b50f5429509fafe0fe5b86b",
  "size": 2302931,
  "created_at": "2025-12-30T23:59:59.999Z",
  "expires_at": "2025-12-31T23:59:59.999Z"
}
Retrieves the details of an upload.
This endpoint retrieves the upload metadata and does not download the file content. The uploaded file content cannot be accessed directly through the API.
The Get Upload endpoint is the successor to the Get File endpoint. The File resource has been soft-deprecated but remains available for backward compatibility.

Path Parameters

upload_id
string
required
The unique identifier of the upload.

Returns

Returns a 200 OK status code along with an upload object if successful, or an error otherwise.
// GET https://api.signatureapi.com/v1/uploads/{upload_id}
// X-API-Key: key_test_...
{
  "id": "upl_7kWstHtxXmje18omrlV6OA",
  "retention": "temporary",
  "url": "https://api.signatureapi.com/v1/uploads/upl_7kWstHtxXmje18omrlV6OA",
  "format": "docx",
  "sha_256": "89c8b8aec98e905a5f7d5f8cd23f6a9138b05f6f1b50f5429509fafe0fe5b86b",
  "size": 2302931,
  "created_at": "2025-12-30T23:59:59.999Z",
  "expires_at": "2025-12-31T23:59:59.999Z"
}