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

# Get Link

> Get one workspace link with short URL and click stats

<ParamField path="linkId" type="string" required>
  Link identifier
</ParamField>

## Access

* Permission: `links:read`

Behavior:

* Returns workspace-scoped link object.
* Adds resolved `shortUrl`.
* Adds `clicks` and `uniqueClicks` from analytics stream if available.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.linquid.io/api/links/link_abc123 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "id": "link_abc123",
      "shortCode": "abc123",
      "shortUrl": "https://linqu.id/abc123",
      "title": "Launch Link",
      "destinationUrl": "https://example.com/launch",
      "campaignId": "campaign_123",
      "conversionTracking": true,
      "trackingType": "pixel",
      "clicks": 104,
      "uniqueClicks": 91
    }
  }
  ```
</ResponseExample>

## Common Errors

* `404`: link not found
