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

# Get Account Research Link

> Retrieve the shareable report link for an existing account research report without starting a new job

Retrieve the magic link for an existing account research report without starting a new job.

The link is derived purely from your tenant and the LinkedIn company slug, so no database lookup is required. Use this when you want to share or re-fetch the link for research that was already run.

## Query Parameters

<ParamField query="company_linkedin_url" type="string" required>
  LinkedIn company page URL of the company you already researched.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/account-research-link?company_linkedin_url=https://www.linkedin.com/company/acme-corp/" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "magic_link": "https://app.clustr-ai.com/shared/a1b2c3d4-..."
    }
  }
  ```

  ```json 400 theme={null}
  {
    "success": false,
    "error": {
      "message": "Invalid or missing company_linkedin_url",
      "code": "BAD_REQUEST"
    }
  }
  ```
</ResponseExample>
