GET
/
v1
/
senders
/
{sender_id}
// GET https://api.signatureapi.com/v1/senders/sen_0nZXZ8pYPByQ4XksJbDl4r
// X-API-Key: key_test_...
// 200 OK
{
  "id": "sen_0nZXZ8pYPByQ4XksJbDl4r",
  "email": "john@example.com",
  "status": "verified",
  "created_at": "2025-01-01T00:00:00.000Z"
}
This feature is in public preview
Retrieves the details of a sender.

Path Parameters

sender_id
string
required
The unique identifier of a sender.

Returns

Returns a 200 OK status code along with a sender object if successful, or an error otherwise.
// GET https://api.signatureapi.com/v1/senders/sen_0nZXZ8pYPByQ4XksJbDl4r
// X-API-Key: key_test_...
// 200 OK
{
  "id": "sen_0nZXZ8pYPByQ4XksJbDl4r",
  "email": "john@example.com",
  "status": "verified",
  "created_at": "2025-01-01T00:00:00.000Z"
}