> ## 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/sdr/followups/due

> List due and pending follow-up tasks for the SDR.

Returns follow-up tasks that are due (or upcoming) for the SDR linked to the API key.

```bash theme={null}
curl "https://app.leadterra.co/v1/sdr/followups/due?limit=20&includeUpcoming=false" \
  -H "Authorization: Bearer sk_live_your_key"
```

## Query Parameters

<ParamField query="limit" type="number">
  Maximum follow-ups to return (default 50, max 200).
</ParamField>

<ParamField query="includeUpcoming" type="string">
  Set to `true` to include not-yet-due follow-ups. Default `false`.
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "followup_id",
      "threadId": "thread_id",
      "sdrId": "sdr_id",
      "status": "pending",
      "dueAt": "2026-06-29T14:00:00.000Z"
    }
  ]
}
```
