Path Parameters
The unique identifier of a file.
Returns
Returns a200 OK status code along with a file object if successful, or an error otherwise. For new integrations, use an upload object.
// GET https://api.signatureapi.com/v1/files/{file_id}
// X-API-Key: key_test_...
{
"id": "fil_0nZXZ8pYPByQ4XksJbDl4r",
"expires_at": "2025-12-31T20:00:00.000Z"
}
Retrieves an existing temporary file.
// GET https://api.signatureapi.com/v1/files/{file_id}
// X-API-Key: key_test_...
{
"id": "fil_0nZXZ8pYPByQ4XksJbDl4r",
"expires_at": "2025-12-31T20:00:00.000Z"
}
/v1/files endpoint are soft-deprecated. Use Uploads instead:200 OK status code along with a file object if successful, or an error otherwise. For new integrations, use an upload object.
// GET https://api.signatureapi.com/v1/files/{file_id}
// X-API-Key: key_test_...
{
"id": "fil_0nZXZ8pYPByQ4XksJbDl4r",
"expires_at": "2025-12-31T20:00:00.000Z"
}
Was this page helpful?