> ## Documentation Index
> Fetch the complete documentation index at: https://www.gliiv.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Sender

> Retrieve detailed information about a specific sender identity.

This endpoint returns the full details of a single sender identity, including its current balance and ownership information.

### Path Parameters

<ParamField path="senderId" type="string" required placeholder="6a03469dbed1ebe90950e973">
  The unique identifier of the sender you want to retrieve.
</ParamField>

### Headers

<ParamField header="X-API-Key" type="string" required placeholder="gliiv_xxxxxxxxxxxxxxxx">
  Your secret API key used to authenticate the request.
</ParamField>

### Response Body

<ResponseField name="id" type="string">
  The unique identifier for the sender.
</ResponseField>

<ResponseField name="name" type="string">
  The alphanumeric label or short code.
</ResponseField>

<ResponseField name="balance" type="number">
  The specific credit balance allocated to this sender.
</ResponseField>

<ResponseField name="user" type="object">
  Information about the owner of the sender identity.

  <Expandable title="User Details">
    <ResponseField name="name" type="string">
      The name of the user.
    </ResponseField>

    <ResponseField name="id" type="string">
      The unique identifier of the user.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="createdAt" type="string">
  The ISO 8601 timestamp of creation.
</ResponseField>

<ResponseField name="updatedAt" type="string">
  The ISO 8601 timestamp of the last update.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
      "id": "<string>",
      "name": "<string>",
      "balance": "<number>",
      "user": {
          "name": "<string>",
          "id": "<string>"
      },
      "createdAt": "<string>",
      "updatedAt": "<string>"
  }
  ```

  ```json 400 theme={null}
  {
      "message": "Invalid input provided",
      "validationErrors": {
          "senderId": "Please provide a valid sender ID"
      },
      "status": 400
  }
  ```

  ```json 401 theme={null}
  {
    "message": "Authentication required",
    "status": 401
  }
  ```

  ```json 404 theme={null}
  {
    "message": "Sender not found",
    "status": 404
  }
  ```

  ```json 500 theme={null}
  {
      "message": "Internal server error",
      "status": 500
  }
  ```
</ResponseExample>
