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

# Get Follow-up

> Retrieve a specific follow-up by ID

## Path Parameters

<ParamField path="id" type="string" required>
  The follow-up ID
</ParamField>

## Response

Returns the full follow-up object including contact, client, and reply details.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.replyify.ai/api/follow-ups/fu_abc123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    "https://app.replyify.ai/api/follow-ups/fu_abc123",
    { headers: { Authorization: "Bearer YOUR_API_KEY" } }
  );
  const followUp = await response.json();
  ```
</CodeGroup>
