> ## 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.

# 세부 정보 가져오기

트래킹 링크의 세부 정보를 조회합니다.

<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="세부-정보-가져오기-request">
  Request
</h2>

***

<h3 id="세부-정보-가져오기-headers">
  Headers
</h3>

<ParamField header="Accept-Language" type="string">
  API 요청 및 결과 반환에 사용할 언어를 지정할 수 있습니다. ISO-639-1 포맷을 따릅니다.
</ParamField>

<ParamField header="Content-Type" type="string">
  리소스의 미디어 타입을 나타냅니다. 기본값으로 `application/json`을 사용합니다.
</ParamField>

<ParamField header="Authorization" type="string">
  API 요청에 사용하는 키값입니다. [키값 생성 및 조회 방법](/ko/references/introduction)을 확인하여 획득할 수 있습니다.
</ParamField>

<h3 id="세부-정보-가져오기-path-params">
  Path Params
</h3>

<ParamField path="id" type="string" required>
  트래킹 링크 식별자. `idType`를 활용하면 트래킹 링크 식별자로 트래킹 링크 ID 대신 숏 링크 ID와 트래킹 링크 템플릿 ID를 사용할 수 있습니다. `idType`을 입력하지 않으면 트래킹 링크 식별자로 트래킹 링크 ID를 사용합니다.

  트래킹 링크 ID는 목록 가져오기 API를 통해 확인할 수 있습니다. 숏 링크 ID와 트래킹 링크 템플릿 ID는 에어브릿지 대시보드에서 확인할 수 있습니다.
</ParamField>

<h3 id="세부-정보-가져오기-query-params">
  Query Params
</h3>

<ParamField query="idType" type="string">
  트래킹 링크 식별자의 형식. 기본 설정은 `id`입니다.

  * `id`: 일반적인 트래킹 링크의 식별자입니다. 목록 가져오기 API를 통해 확인할 수 있습니다.
  * `shortId`:  숏 링크 ID입니다. 숏 링크는 숏 링크 형식의 트래킹 링크입니다.
  * `trackingTemplateId`: 트래킹 링크 템플릿의 ID입니다.
</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="세부-정보-가져오기-response">
  Response
</h2>

***

### 200

### 400

입력한 필드에 오류가 있거나 해당하는 리소스가 없습니다.

### 422

필드가 누락되었거나 오류가 있습니다.

<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>
