> ## Documentation Index
> Fetch the complete documentation index at: https://signatureapi-daf4ee54.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a sender

> Retrieve the details and current verification status of a sender

<Note>Sender management via API is currently in public preview. To enable it, contact [support](https://signatureapi.com/support).</Note>

Retrieves the details of a [sender](/docs/api/resources/senders/object). Use this endpoint to check the current verification status of a sender after creation.

## Path parameters

<ParamField path="sender_id" type="string" required>
  The unique identifier of the sender.
</ParamField>

## Returns

Returns a `200 OK` status code and [a sender object](/docs/api/resources/senders/object) on success, or an [error](/docs/api/errors) otherwise.

<RequestExample>
  ```json Request theme={null}
  // GET https://api.signatureapi.com/v1/senders/a1b2c3d4-e5f6-7890-abcd-ef1234567890
  // X-API-Key: key_test_...
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  // 200 OK

  {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "email": "jennifer@example.com",
      "status": "verified",
      "created_at": "2025-01-01T00:00:00.000Z"
  }
  ```
</ResponseExample>
