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

# List Backlink Targets

> Get tracked backlink targets for a project

Returns all active tracked backlink targets for a project with their latest metrics.

<ParamField path="projectId" type="string" required>Project UUID</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://app.ranked.ai/api/v1/projects/{projectId}/backlinks" \
    -H "Authorization: Bearer rk_live_your_api_key"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    `https://app.ranked.ai/api/v1/projects/${projectId}/backlinks`,
    { headers: { 'Authorization': `Bearer ${apiKey}` } }
  );
  const { data } = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      f'https://app.ranked.ai/api/v1/projects/{project_id}/backlinks',
      headers={'Authorization': f'Bearer {api_key}'}
  )
  targets = response.json()['data']
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "abc-123",
        "target_domain": "siouxcitytreeco.com",
        "total_backlinks": 58,
        "total_referring_domains": 54,
        "rank": 0,
        "last_summary_update": "2026-05-02"
      }
    ]
  }
  ```
</ResponseExample>
