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

# Get Tracking Link

Get the details of a tracking link.

<Card title="Try API Request" icon="rectangle-api" horizontal href="https://www.postman.com/airbridge-engineering/workspace/airbridge-api/request/22395869-7b6638cc-5b7f-448f-89da-723d17b0f39b" />

```text GET theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
https://api.airbridge.io/v1/tracking-links/{id}
```

<h2 id="get-tracking-link-request">
  Request
</h2>

***

<h3 id="get-tracking-link-headers">
  Headers
</h3>

<ParamField header="Accept-Language" type="string">
  You can specify the language to use for API requests and responses. It follows the ISO-639-1 format.
</ParamField>

<ParamField header="Content-Type" type="string">
  Represents the media type of the resource. Defaults to `application/json`.
</ParamField>

<ParamField header="Authorization" type="string">
  The key value to use for API requests. Instructions for getting API keys are in "[how to generate API Keys](/en/references/introduction#authorization)".
</ParamField>

<h3 id="get-tracking-link-path-params">
  Path Params
</h3>

<ParamField path="id" type="string" required>
  The ID of the Tracking Link.
</ParamField>

<h3 id="get-tracking-link-query-params">
  Query Params
</h3>

<ParamField query="idType" type="string">
  The format of the tracking link identifier. The default setting is `id`

  \- `id`: The identifier of a generic tracking link. It can be obtained via the list get API.
  \- `shortId`: Short link ID. A short link is a tracking link in short link format.
  \- `trackingTemplateId`: ID of the tracking link template.
</ParamField>

<RequestExample>
  ```shellscript Request theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  curl -X GET 'https://api.airbridge.io/v1/tracking-links/10000?idType=id' \
    -H 'Accept-Language: ko' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'
  ```
</RequestExample>

<h2 id="get-tracking-link-response">
  Response
</h2>

***

### 200

### 400

There is an error in the field provided, or there is no such resource.

### 422

A field is missing or has an error.

<ResponseExample>
  ```json 200 theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  {
    "data": {
      "link": {
        "click": "https://go.ab180.co/@ablog/my-channel?...",
        "impression": null,
        "serverToServerClick": null
      },
      "email": "contact@ab180.co",
      "ogTag": {
        "title": "AB180",
        "imageUrl": "http://static.airbridge.io/images/og_tags/50ca2e8d-07b2-4a0e-8294-f00ddb8e59ae.png",
        "description": "Discovering Metrics That Matter!"
      },
      "company": null,
      "shortId": "ri4lnp",
      "shortUrl": "https://go.ab180.co/ri4lnp",
      "createdAt": "2023-01-01T00:00:00+09:00",
      "channelName": "my-channel",
      "channelType": "custom",
      "deeplinkUrl": null,
      "deeplinkOption": {
        "showAlertForInitialDeeplinkingIssue": false
      },
      "fallbackPaths": {
        "ios": "itunes-appstore",
        "option": {
          "iosCustomProductPageId": null
        },
        "android": "google-play",
        "desktop": "https://airbridge.io"
      },
      "campaignParams": {
        "campaign": "123",
        "adCreative": "asdf",
        "adGroup": "zxcv",
        "content": null,
        "term": "poiu",
        "subId": null,
        "subId1": null,
        "subId2": null,
        "subId3": null
      },
      "isReengagement": "OFF"
    }
  }
  ```

  ```json 400 theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  {
    "type": "about:blank",
    "title": "Not Found",
    "detail": "Resource not found.",
    "status": 404,
    "traceId": "1-6450a21d-2b02e4d533589b625d875399"
  }
  ```

  ```json 422 theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  {
    "detail": [
      {
        "loc": [
          "string"
        ],
        "msg": "string",
        "type": "string"
      }
    ]
  }
  ```
</ResponseExample>
