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

# Retrieve a Link

> Retrieve details for a specific account link

## Description

This endpoint retrieves a Link.

## Authentication

This endpoint requires API credentials via header authentication:

* Client ID (header)
* Access Key (header)

## Path Parameters

| Parameter | Type   | Required | Description                                   |
| --------- | ------ | -------- | --------------------------------------------- |
| `link_id` | string | Yes      | The unique identifier of the link to retrieve |

## Response

### Success Response (200 OK)

Returns a Link object with all properties.

```json theme={null}
{
  "id": "48427a36d43c4d5aa6324bc06c692456",
  "created_at": "2022-06-07T15:00:00Z",
  "updated_at": "2022-06-31T15:00:00Z",
  "tracking_info": "user123456",
  "status": "new",
  "user_external_id": "user123456",
  "provider_id": "adp",
  "link_hash": "bc917458a3da4b2c8cc8282aa1707aaa"
}
```

### Error Responses

**401 Unauthorized:** Invalid or missing authentication credentials.

**403 Forbidden:** Insufficient permissions for the authenticated user.

**404 Not Found:** The specified link ID does not exist.
