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

# GET /v1/sdrs

> List active SDRs in the workspace with Gmail connection status.

Returns all active SDR profiles in the workspace, including whether each SDR's Gmail is connected via Composio.

```bash theme={null}
curl https://app.leadterra.co/v1/sdrs \
  -H "Authorization: Bearer sk_live_your_key"
```

## Response

```json theme={null}
{
  "data": [
    {
      "id": "sdr_id",
      "name": "Jordan Lee",
      "email": "jordan@example.com",
      "gmailConnected": true,
      "gmailEmail": "jordan.sdr@gmail.com"
    }
  ]
}
```

<ResponseField name="data[].id" type="string">
  SDR profile identifier.
</ResponseField>

<ResponseField name="data[].name" type="string">
  SDR display name.
</ResponseField>

<ResponseField name="data[].email" type="string">
  SDR email address.
</ResponseField>

<ResponseField name="data[].gmailConnected" type="boolean">
  Whether the SDR's Gmail is connected and active via Composio.
</ResponseField>

<ResponseField name="data[].gmailEmail" type="string">
  The connected Gmail address, or null if not connected.
</ResponseField>
