> ## 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 SKAN 3.0 Conversion Value Schema (Deprecated)

Get SKAN 3.0 Conversion Value Schema.

```text GET theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
https://api.airbridge.io/skadnetwork/conversion-bit-config/v4?api_key={API_KEY}&response_format={RESPONSE_FORMAT}&itunes_app_id={ITUNES_APP_ID}
```

<h2 id="get-skan-3-0-conversion-value-schema-deprecated-request">
  Request
</h2>

***

<h3 id="get-skan-3-0-conversion-value-schema-deprecated-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>

<h3 id="get-skan-3-0-conversion-value-schema-deprecated-query-params">
  Query Params
</h3>

<ParamField query="ios_app_store_id" type="string" required>
  Itunes App ID (ex. 1370724782)
</ParamField>

<ParamField query="response_format" type="string" required>
  The names of Integrated Channels are shown using the Airbridge display name.

  ex) tiktok, facebook.business

  **Guide)** [Ad Channels Integrated with Airbridge](/en/guides/integrated-ad-channels-list)
</ParamField>

<ParamField query="api_key" type="string" required>
  API key that Airbridge provides to authenticated ad channels.
</ParamField>

<RequestExample>
  ```shellscript Request theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  curl -X GET 'https://api.airbridge.io/skadnetwork/conversion-bit-config/v4?api_key={API_KEY}&response_format={RESPONSE_FORMAT}&itunes_app_id={ITUNES_APP_ID}' \
    -H 'Accept-Language: ko' \
    -H 'Content-Type: application/json'
  ```
</RequestExample>

<h2 id="get-skan-3-0-conversion-value-schema-deprecated-response">
  Response
</h2>

***

### 200

<div style={{ overflowX: 'auto' }}>
  <table style={{ display: 'table' }}>
    <thead>
      <tr>
        <th width="60px">
          Query Parameters
        </th>

        <th width="20px">
          Type
        </th>

        <th width="180px">
          Description
        </th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          `default_currency`
        </td>

        <td>
          string
        </td>

        <td>
          The three-letter code for the app’s [standard currency](/en/guides/set-app-standard-currency) set within Airbridge.
        </td>
      </tr>

      <tr>
        <td>
          `last_update_time`
        </td>

        <td>
          number
        </td>

        <td>
          The Unix timestamp corresponding to the last update time of SKAN settings in Airbridge.
        </td>
      </tr>

      <tr>
        <td>
          `conversion_bits_rules`
        </td>

        <td>
          object
        </td>

        <td>
          The conversion value schema.
        </td>
      </tr>

      <tr>
        <td>
          `.$.conversion_value`
        </td>

        <td>
          string
        </td>

        <td>
          The conversion value, which is an integer between `0` and `63`.
        </td>
      </tr>

      <tr>
        <td>
          `.$.events`
        </td>

        <td>
          array
        </td>

        <td>
          Information about the event mapped to the conversion value.
        </td>
      </tr>

      <tr>
        <td>
          `.$.$.event_name`
        </td>

        <td>
          string
        </td>

        <td>
          [The Event Category](/en/guides/airbridge-event-types#list-of-standard-events) of the event mapped to the conversion value; Is different from the event name set by ad channels.
        </td>
      </tr>

      <tr>
        <td>
          `.$.$.values`
        </td>

        <td>
          object
        </td>

        <td>
          Information about the ranges for the selected measurement type.
        </td>
      </tr>

      <tr>
        <td>
          `.$.$.values.amount`
        </td>

        <td>
          number
        </td>

        <td>
          The lower value of the range; Is included in the range.
        </td>
      </tr>

      <tr>
        <td>
          `.$.$.values.max_amount`
        </td>

        <td>
          number
        </td>

        <td>
          The upper value of the range; Is not included in the range.
        </td>
      </tr>
    </tbody>
  </table>
</div>

<ResponseExample>
  ```json 200 theme={"theme":{"light":"github-dark-dimmed","dark":"github-dark-dimmed"}}
  {
    "default_currency": "USD",
    "last_update_time": 1700000000,
    "conversion_bits_rules": [
      {
        "events": [
          {
            "values": {
              "amount": 1,
              "max_amount": 10000
            },
            "event_name": "adnetwork_purchase"
          }
        ],
        "conversion_value": 1
      },
      {
        "events": [
          {
            "values": {
              "amount": 1,
              "max_amount": 10000
            },
            "event_name": "adnetwork_purchase"
          },
          {
            "event_name": "adnetwork_signup"
          }
        ],
        "conversion_value": 2
      }
    ]
  }
  ```
</ResponseExample>
