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

# Campaign Statistics

## **Retrieving Statistics for a Specific Advertiser**

The statistics endpoint allows measurement and reporting on campaigns using specified metrics and dimensions.

**Response example:**

```json JSON theme={null}
{
    "advertiserIds": "12345",
    "startDate": "2020-09-10T04:00:00.000Z",
    "endDate": "2020-09-14T04:00:00.000Z",
    "format": "csv",
    "dimensions": ["AdsetId","Day"],
    "metrics": ["Displays","Clicks"],
    "timezone": "PST",
    "currency": "USD"
}
```

 A report is generated via a `POST` call and the results are returned directly in the response.

**Response example:**

```csv CSV theme={null}
AdsetId;Day;Currency;Displays;Clicks
54321;2020/9/10;USD;2534;35
54321;2020/9/11;USD;6234;96
54321;2020/9/12;USD;4357;54
54321;2020/9/13;USD;3245;45
54321;2020/9/14;USD;4584;72
```

***

### **Creating a Report Request**

A complete statistics report request requires the following fields:

<table>
  <thead>
    <tr>
      <th>
        <p>
          Parameter
        </p>
      </th>

      <th>
        <p>
          Definition
        </p>
      </th>

      <th>
        <p>
          Type
        </p>
      </th>

      <th>
        <p>
          Required?
        </p>
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <p>
          <code>
            advertiserIds
          </code>
        </p>
      </td>

      <td>
        <p>
          A list of advertiser ids (comma separated)
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          N
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            currency
          </code>
        </p>
      </td>

      <td>
        <p>
          The currency to be used in the report, ISO format.
        </p>

        <p>
          A list of supported currencies is <a href="/marketing-solutions/v2025.10/docs/campaign-statistics#currencies">available here</a>.
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            startDate
          </code>
        </p>
      </td>

      <td>
        <p>
          Start date, <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> format.
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            endDate
          </code>
        </p>
      </td>

      <td>
        <p>
          End date, <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> format.
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            format
          </code>
        </p>
      </td>

      <td>
        <p>
          The output format. CSV, JSON, XML or EXCEL.
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            dimensions
          </code>
        </p>
      </td>

      <td>
        <p>
          See the <a href="/marketing-solutions/v2025.10/docs/campaign-statistics#dimensions">Dimensions</a> page.
        </p>
      </td>

      <td>
        <p>
          Arrayk:api-he
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            metrics
          </code>
        </p>
      </td>

      <td>
        <p>
          See the <a href="/marketing-solutions/v2025.10/docs/campaign-statistics#full-list-of-metrics">Metrics</a> page.
        </p>
      </td>

      <td>
        <p>
          Arrayk:api-he
        </p>
      </td>

      <td>
        <p>
          Y
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <code>
            timezone
          </code>
        </p>
      </td>

      <td>
        <p>
          The timezone for organizing the data in the report.
        </p>

        <p>
          A list of supported values is available here.
        </p>
      </td>

      <td>
        <p>
          string
        </p>
      </td>

      <td>
        <p>
          N
        </p>

        <p>
          UTC will be default timezone if not specified.
        </p>
      </td>
    </tr>
  </tbody>
</table>

 

<Warning>
  **A Note on `AdvertiserIds`**

  Advertisers which are not in your portfolio will be skipped. The specified advertisers must have at least one campaign to appear in the report.

  If you do not specify any value for `advertiserIds`, statistics for all advertisers in your portfolio will be returned.
</Warning>

***

## **Response Codes**

The following response codes may be returned by the API:

`400`: Bad request, invalid syntax or validation error. Review the request to make sure the format is valid.\
`401`: Authentication failed. Ensure the authentication header is formatted properly and your access token hasn't expired.\
`403`: No campaign found. Verify your campaign IDs are correct.\
`429`: Throttling failure. Wait a minute to try again - there is a limit of 200 requests per minute.\
`500`: Unknown error

<Info>
  **HTTP Error Status Codes**\
  You can find the full list of error status codes [here](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes).
</Info>

***

## **Validation Errors**

Below is a list of error codes for the Statistics endpoint and a more detailed description of their meaning. General guidance on handling API errors can be found [here](/marketing-solutions/v2025.10/docs/api-error-types).

**`duplicate-dimensions`**\
Duplicate dimension(s) found.

**`duplicate-metrics`**\
Duplicate metrics(s) found..

**`insufficient-advertiser-permission`**\
Insufficient advertiser permission.

**`insufficient-advertisers-permissions`**\
Insufficient advertisers permission.

**`invalid-country`**\
This feature is currently unavailable in the country of advertiser.

**`invalid-currency`**\
Invalid currency.

**`invalid-date-range`**\
The start date can not be after the end date.

**`invalid-environment`**\
Invalid environment.

**`invalid-event-type`**\
Invalid Event Type.

**`invalid-format`**\
Format is not valid. Must be one of 'csv', 'xml', 'excel' or 'json'.

**`invalid-start-date`**\
The start date is too old.

**`invalid-timezone`**\
Invalid time zone.

**`report-generation-failed`**\
A problem occurred while generating the report.

**`required-field`**\
The required field is missing. Examples:

* A start date and end date are required.
* At least one metric must be provided.
* At least one dimension must be provided.
* Payload is required.
* Currency is required.
* At least one advertiser id must be provided.

 **`required-request-body`**\
Request body is required.

**`unsupported-dimensions`**\
A request is invalid or the server wasn't able to process the request due to a serialization error.

**`unsupported-dimensions-combination`**\
The requested dimensions combination is not supported.

**`invalid-metrics`**\
The requested metrics are not supported.

***

## **Dimensions**

Dimensions allow you to specify the aggregation level suited to your needs.

There are no restrictions on the number of dimensions or the order of dimensions.

The full list is below:

<table>
  <thead>
    <tr>
      <th>
        <p>
          Type
        </p>
      </th>

      <th>
        <p>
          Dimension
        </p>
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <p>
          Campaign
        </p>
      </td>

      <td>
        <p>
          <code>
            AdsetId
          </code>

          ,

          <code>
            Adset
          </code>

          ,

          <code>
            AdvertiserId
          </code>

          ,

          <code>
            Advertiser
          </code>

          ,

          <code>
            CategoryId
          </code>

          ,

          <code>
            Category
          </code>

          ,

          <code>
            CampaignId
          </code>

          ,

          <code>
            Campaign
          </code>

          ,

          <code>
            AdId
          </code>

          ,

          <code>
            Ad
          </code>

          ,

          <code>
            CouponId
          </code>

          ,

          <code>
            Coupon
          </code>

          ,

          <code>
            MarketingObjectiveId
          </code>

          ,

          <code>
            MarketingObjective
          </code>
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          Time
        </p>
      </td>

      <td>
        <p>
          <code>
            Hour
          </code>

          ,

          <code>
            Day
          </code>

          ,

          <code>
            Week
          </code>

          ,

          <code>
            Month
          </code>

          ,

          <code>
            Year
          </code>
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          Other
        </p>
      </td>

      <td>
        <p>
          <code>
            ChannelId
          </code>

          ,

          <code>
            Channel
          </code>

          ,

          <code>
            Os
          </code>

          ,

          <code>
            Device
          </code>
        </p>
      </td>
    </tr>
  </tbody>
</table>

The `dimensions` array of the stats request should contain all requested dimensions.

For example:  `['Advertiser','Adset','Day','Hour']`

<Info>
  **Names vs. IDs**

  In the dimensions above, `Advertiser` will return the name of the advertiser, whereas `AdvertiserId` returns the numerical ID.
</Info>

***

## **Metrics**

### **Naming Convention**

Metrics are created with a common structure, such as:  `SalesAllPc30d`

The naming follows the following pattern:\
`[Measurement][Devices][AttributionModel][LookbackWindow] `

**Measurement**\
What you would like to measure in your report.\
`Clicks`, `Displays`, `AdvertiserCost`, etc. (see full metrics list)

**Devices**\
Cross-device sales are sales that occurred on a different device than the one where the click occurred.  Specifying `All` includes cross-device sales.\
`All`

**Attribution Model**\
A sale is attributed when your customer sees or clicks an ad and converts within a specified window of time. It could be post-click, post-view or your custom attribution, if you send us your attribution data for sales.\
`Pc`,`Pv`, `ClientAttribution`

<Warning>
  If you are using a newly introduced lookback window (`PC1D`, `PC7D`), your request won’t return data prior to January 1st, 2020. The request will deliver a 0 for these metrics.
</Warning>

**Lookback Window**\
The time between a sale and the view or click of an ad.\
`30D`, `7D`, `1D`, `24H`

### **Full List of Metrics**

Metrics refer to measurements such as **clicks**, **revenue**, or **cost per visit**.

All metrics available in Criteo Commerce Growth are available through the Statistics API v2.  

The following is a list of available metrics in Criteo Commerce Growth (**bolded**) and their corresponding metric names for the `metrics` array of your request.

<Info>
  **A note about percentages**

  Percentages will be returned as decimal values between 0 and 1. For example, 99.99% will be returned as .9999
</Info>

 \
 **Clicks**\
The number of clicks driven by your ads.\
`Clicks`

**Displays**\
The number of ad impressions served on publishers via Criteo.\
`Displays`

**Viewed displays**\
The number of ads that have been viewed. A display is considered viewed if at least 50% of the ad appears on the screen for at least one second.\
`ViewableDisplays`

**Unviewed displays**\
The number of ads that have not been viewed. A display that doesn't meet the viewed displays' criteria is considered unviewed.\
`NonViewableDisplays`

**Untracked displays**\
This is the number of untracked displays. Some displays cannot be tracked because of the display environment (for instance, native banner)\
`UntrackableDisplays`

**Cost**\
Total money spent on Criteo advertising.\
`AdvertiserCost`

**Qualified Visits**\
The number of users on the target website or app for which at least two events or one sale event occurred within the hour following a click.\
`QualifiedVisits`

**Visits**\
The number of users on the target website or app for which at least one event occurred within the hour following a click.\
`Visits`

**Cost per Visit**\
The amount of money spent per visit to your website or app.\
`CostPerVisit`

**Bounce Rate**\
The proportion of website visitors leaving after only viewing one page.\
`BounceRate`

**Potential Displays**\
The number of display opportunities, or the number of bid requests received.\
`PotentialDisplays`

**Win Rate**\
The number of displays divided by the total number of display opportunities.\
`OverallCompetitionWin`

**Sales**\
The number of transactions or conversions resulting from Criteo ads.\
`SalesClientAttribution`,`SalesAllClientAttribution`,`SalesPc30d`,`SalesAllPc30d`,`SalesPv24h`,`SalesAllPv24h`,`SalesPc30dPv24h`,`SalesAllPc30dPv24h`,`SalesPc1d`,`SalesAllPc1d`,`SalesPc7d`,`SalesAllPc7d`

**Revenue**\
The amount of money generated by online sales.\
`RevenueGeneratedClientAttribution`,`RevenueGeneratedAllClientAttribution`,`RevenueGeneratedPc30d`,`RevenueGeneratedAllPc30d`,`RevenueGeneratedPv24h`,`RevenueGeneratedAllPv24h`,`RevenueGeneratedPc30dPv24h`,`RevenueGeneratedAllPc30dPv24h`,`RevenueGeneratedPc1d`,`RevenueGeneratedAllPc1d`,`RevenueGeneratedPc7d`,`RevenueGeneratedAllPc7d`

**Exposed Users**\
The number of users who have been served an ad.\
`ExposedUsers`

**Audience**\
Potential users who could be served an ad.\
`Audience`

**Reach**\
Share of potential users who have been served an ad.\
`Reach`

<Info>
  **A Note about Audience and Reach with the Category Dimension**

  The algorithm used for merging audience count across categories is non-commutative (by design).

  It is expected that Audience and Reach metrics produce slightly different results when queried with and without the category dimension.
</Info>

**Average Cart**\
Average revenue generated by a conversion or sale.\
`AverageCartClientAttribution`, `AverageCartAllClientAttribution`, `AverageCartPc30d`, `AverageCartAllPc30d`, `AverageCartPv24h`, `AverageCartAllPv24h`, `AverageCartPc30dPv24h`, `AverageCartAllPc30dPv24h`, `AverageCartPc1d`, `AverageCartAllPc1d`, `AverageCartPc7d`, `AverageCartAllPc7d`

**CTR (Click Through Rate)**\
Percentage of users served an ad who clicked.\
`ClickThroughRate`

**CVR (Conversion Rate)**\
Percentage of conversions or sales compared to the clicks that occurred.\
`ConversionRateClientAttribution`,`ConversionRateAllClientAttribution`,`ConversionRatePc30d`,`ConversionRateAllPc30d`,`ConversionRatePv24h`,`ConversionRateAllPv24h`,`ConversionRatePc30dPv24h`,`ConversionRateAllPc30dPv24h`, `ConversionRatePc1d`,`ConversionRateAllPc1d`,`ConversionRatePc7d`,`ConversionRateAllPc7d`

**COS (Cost of Sale)**\
Advertising cost per conversion or sale.\
`ECosClientAttribution`,`ECosAllClientAttribution`,`ECosPc30d`,`ECosAllPc30d`,`ECosPv24h`,`ECosAllPv24h`,`ECosPc30dPv24h`,`ECosAllPc30dPv24h`,`ECosPc1d`,`ECosAllPc1d`,`ECosPc7d`,`ECosAllPc7d`

**CPO (Cost perOrder)**\
The price you pay for each order. Calculated as total cost divided by the total number of orders.\
`CostPerOrderClientAttribution`,`CostPerOrderAllClientAttribution`,`CostPerOrderPc30d`,`CostPerOrderAllPc30d`,`CostPerOrderPv24h`,`CostPerOrderAllPv24h`,`CostPerOrderPc30dPv24h`,`CostPerOrderAllPc30dPv24h`,`CostPerOrderPc1d`,`CostPerOrderAllPc1d`,`CostPerOrderPc7d`,`CostPerOrderAllPc7d`

**CPC (Cost per Click)**\
Cost per click.\
`Cpc`

**CPM (Cost per Mille)**\
Cost per 1000 Impressions.\
`ECpm`

**ROAS (Return on Ad Spend)**\
The ratio between revenue generated and the cost.\
`RoasClientAttribution`,`RoasAllClientAttribution`,`RoasPc30d`,`RoasAllPc30d`,`RoasPv24h`,`RoasAllPv24h`,`RoasPc30dPv24h`,`RoasAllPc30dPv24h`,`RoasPc1d`,`RoasAllPc1d`,`RoasPc7d`,`RoasAllPc7d`

**Advertiser Value**\
The revenue generated by each product, considering margin (if provided in your product catalog).\
`AdvertiserValue`,`AdvertiserAllValue`

**COV (Cost of Advertiser Value)**\
The ratio between the advertiser value generated by sales and the cost of the campaign(s), given as a percentage.\
`CostOfAdvertiserValue`,CostOfAdvertiserValueAll\`

**Post-Install Sales**\
The number of your completed events after an app install.\
`PostInstallSales`

**App Installs**\
The number of installations of your app.\
`AppInstalls`

**Post-Install CVR (Conversion Rate)**\
Percentage of post-install sales compared to the clicks that occurred.\
`PostInstallConversionRate`

**Post-Install COS (Cost of Sale)**\
The cost of sale for app install campaigns.\
`PostInstallCostOfSale`

**Post-Install Order Value**\
The amount of money generated by sales after an app install.\
`PostInstallOrderValue`

**Cost per Install**\
The ad cost per app install.\
`CostPerInstall`

**Install Rate**\
The percentage of completed app installs compared to the number of clicks.\
`InstallRate`

**Post-Install CPO (Cost per Order)**\
The cost per order for sales after an app install.\
`PostInstallCostPerOrder`

**Post-Install ROAS**\
The return on ad spend for sales after an app install.\
`PostInstallRoas`

**Omnichannel ROAS (Return on Ad Spend)**\
The ratio between revenue generated online and offline, and the cost.\
`OmnichannelRoasClientAttribution`,`OmnichannelRoasPc30d`,`OmnichannelRoasAllPc30d`,`OmnichannelRoasPv24h`,`OmnichannelRoasAllPv24h`

**Omnichannel Revenue**\
The revenue generated by online and offline sales.\
`OmnichannelRevenueClientAttribution`,`OmnichannelRevenuePc30d`,`OmnichannelRevenueAllPc30d`,`OmnichannelRevenuePv24h`,`OmnichannelRevenueAllPv24h`

**Omnichannel Sales**\
The number of online and offline transactions or conversions resulting from Criteo ads.\
`OmnichannelsalesClientAttribution`,`OmnichannelSalesPc30d`,`OmnichannelSalesAllPc30d`,`OmnichannelSalesPv24h`,`OmnichannelSalesAllPv24h`

**Store ROAS**\
The ratio between the revenue generated offline and the cost.\
`RoasOfflinePc30d`,`RoasOfflinePv24h`

**Store Sales**\
The number of completed in-store transactions or purchases.\
`SalesOfflinePc30d`,`SalesOfflinePv24h`

**Store Revenue**\
The amount of revenue generated by in-store sales.\
`RevenueGeneratedOfflinePc30d`,`RevenueGeneratedOfflinePv24h`

***

## **Currencies**

Below is a table of all currency codes supported for the `currency` field of your stats report requests.

<table>
  <thead>
    <tr>
      <th>
        <p>
          Currency Code
        </p>
      </th>

      <th>
        <p>
          Symbol
        </p>
      </th>

      <th>
        <p>
          Full Name
        </p>
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <p>
          EUR
        </p>
      </td>

      <td>
        <p>
          €
        </p>
      </td>

      <td>
        <p>
          Euro
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          USD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          US Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          GBP
        </p>
      </td>

      <td>
        <p>
          £
        </p>
      </td>

      <td>
        <p>
          British Pound
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CHF
        </p>
      </td>

      <td>
        <p>
          Ch
        </p>
      </td>

      <td>
        <p>
          Swiss Franc
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          JPY
        </p>
      </td>

      <td>
        <p>
          ¥
        </p>
      </td>

      <td>
        <p>
          Japanese Yen
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BGN
        </p>
      </td>

      <td>
        <p>
          Л
        </p>
      </td>

      <td>
        <p>
          Bulgarian Lev
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CZK
        </p>
      </td>

      <td>
        <p>
          K
        </p>
      </td>

      <td>
        <p>
          Czech Koruna
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          DKK
        </p>
      </td>

      <td>
        <p>
          Kr
        </p>
      </td>

      <td>
        <p>
          Danish Krone
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          HUF
        </p>
      </td>

      <td>
        <p>
          Ft
        </p>
      </td>

      <td>
        <p>
          Hungarian Forint
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          LTL
        </p>
      </td>

      <td>
        <p>
          Lt
        </p>
      </td>

      <td>
        <p>
          Lithuanian Litas
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PLN
        </p>
      </td>

      <td>
        <p>
          Z
        </p>
      </td>

      <td>
        <p>
          Polish Zloty
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          RON
        </p>
      </td>

      <td>
        <p>
          Le
        </p>
      </td>

      <td>
        <p>
          Romanian New Leu
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          SEK
        </p>
      </td>

      <td>
        <p>
          Kr
        </p>
      </td>

      <td>
        <p>
          Swedish Krona
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NOK
        </p>
      </td>

      <td>
        <p>
          Kr
        </p>
      </td>

      <td>
        <p>
          Norwegian Krone
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          HRK
        </p>
      </td>

      <td>
        <p>
          Kn
        </p>
      </td>

      <td>
        <p>
          Croatian Kuna
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          RUB
        </p>
      </td>

      <td>
        <p>
          Р
        </p>
      </td>

      <td>
        <p>
          Russian Ruble
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TRY
        </p>
      </td>

      <td>
        <p>
          Tl
        </p>
      </td>

      <td>
        <p>
          Turkish Lira
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AUD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Australian Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BRL
        </p>
      </td>

      <td>
        <p>
          R\$
        </p>
      </td>

      <td>
        <p>
          Brazilian Real
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CAD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Canadian Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CNY
        </p>
      </td>

      <td>
        <p>
          ¥
        </p>
      </td>

      <td>
        <p>
          Chinese Yuan Renminbi
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          HKD
        </p>
      </td>

      <td>
        <p>
          Hk
        </p>
      </td>

      <td>
        <p>
          Hong Kong Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          IDR
        </p>
      </td>

      <td>
        <p>
          Rp
        </p>
      </td>

      <td>
        <p>
          Indonesian Rupiah
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          INR
        </p>
      </td>

      <td>
        <p>
          Rs
        </p>
      </td>

      <td>
        <p>
          Indian Rupee
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KRW
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          South Korean Won
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MXN
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Mexican Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MYR
        </p>
      </td>

      <td>
        <p>
          Rm
        </p>
      </td>

      <td>
        <p>
          Malaysian Ringgit
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NZD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          New Zealand Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PHP
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Philippine Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          SGD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Singapore Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          THB
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Thai Baht
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ZAR
        </p>
      </td>

      <td>
        <p>
          R
        </p>
      </td>

      <td>
        <p>
          South African Rand
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ARS
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Argentine Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          COP
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Colombian Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AED
        </p>
      </td>

      <td>
        <p>
          د
        </p>
      </td>

      <td>
        <p>
          United Arab Emirates Dirham
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KZT
        </p>
      </td>

      <td>
        <p>
          Т
        </p>
      </td>

      <td>
        <p>
          Kazakhstani Tenge
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          SAR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Saudi Riyal
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          UAH
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Ukrainian Hryvnia
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          EGP
        </p>
      </td>

      <td>
        <p>
          £
        </p>
      </td>

      <td>
        <p>
          Egyptian Pound
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MAD
        </p>
      </td>

      <td>
        <p>
          Dh
        </p>
      </td>

      <td>
        <p>
          Moroccan Dirham
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ILS
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Israeli Shekel
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BHD
        </p>
      </td>

      <td>
        <p>
          Bd
        </p>
      </td>

      <td>
        <p>
          Bahraini Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          JOD
        </p>
      </td>

      <td>
        <p>
          Jd
        </p>
      </td>

      <td>
        <p>
          Jordanian Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KWD
        </p>
      </td>

      <td>
        <p>
          ك
        </p>
      </td>

      <td>
        <p>
          Kuwaiti Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          LBP
        </p>
      </td>

      <td>
        <p>
          ل
        </p>
      </td>

      <td>
        <p>
          Lebanese Pound
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          OMR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Omani Rial
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          QAR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Qatari Riyal
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NGN
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Nigerian Naira
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KES
        </p>
      </td>

      <td>
        <p>
          Ks
        </p>
      </td>

      <td>
        <p>
          Kenyan Shilling
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ALL
        </p>
      </td>

      <td>
        <p>
          Le
        </p>
      </td>

      <td>
        <p>
          Albania Lek
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ETB
        </p>
      </td>

      <td>
        <p>
          Br
        </p>
      </td>

      <td>
        <p>
          Ethopian Birr
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BSD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Bahamian Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BDT
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Bangladeshi Taka
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BAM
        </p>
      </td>

      <td>
        <p>
          Km
        </p>
      </td>

      <td>
        <p>
          Bosnia-Herzegovina Convertible Mark
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BWP
        </p>
      </td>

      <td>
        <p>
          P
        </p>
      </td>

      <td>
        <p>
          Botswana Pula
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MMK
        </p>
      </td>

      <td>
        <p>
          K
        </p>
      </td>

      <td>
        <p>
          Burmese Kyat
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AFN
        </p>
      </td>

      <td>
        <p>
          ؋
        </p>
      </td>

      <td>
        <p>
          Afghan Afghani
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BTN
        </p>
      </td>

      <td>
        <p>
          Nu
        </p>
      </td>

      <td>
        <p>
          Bhutanese Ngultrum
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          GEL
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Georgian Lari
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          GHS
        </p>
      </td>

      <td>
        <p>
          Gh
        </p>
      </td>

      <td>
        <p>
          Ghanaian Cedi
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          GIP
        </p>
      </td>

      <td>
        <p>
          £
        </p>
      </td>

      <td>
        <p>
          Gibraltar Pound
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ISK
        </p>
      </td>

      <td>
        <p>
          Kr
        </p>
      </td>

      <td>
        <p>
          Icelandic Krona
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KHR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Cambodian Riel
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          JMD
        </p>
      </td>

      <td>
        <p>
          J\$
        </p>
      </td>

      <td>
        <p>
          Jamaican Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          LAK
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Lao Kip
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MKD
        </p>
      </td>

      <td>
        <p>
          Д
        </p>
      </td>

      <td>
        <p>
          Macedonian Denar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MUR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Mauritian Rupee
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MNT
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Mongolian Tögrög
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NPR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Nepalese Rupee
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NAD
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Namibian Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PKR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Pakistani Rupee
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          RWF
        </p>
      </td>

      <td>
        <p>
          Fr
        </p>
      </td>

      <td>
        <p>
          Rwandan Franc
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          LKR
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Sri Lankan Rupee
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          SZL
        </p>
      </td>

      <td>
        <p>
          L
        </p>
      </td>

      <td>
        <p>
          Swazi Lilangeni
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TZS
        </p>
      </td>

      <td>
        <p>
          Ts
        </p>
      </td>

      <td>
        <p>
          Tanzanian Shilling
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TTD
        </p>
      </td>

      <td>
        <p>
          Tt
        </p>
      </td>

      <td>
        <p>
          Trinidad And Tobago Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          UGX
        </p>
      </td>

      <td>
        <p>
          Us
        </p>
      </td>

      <td>
        <p>
          Ugandan Shilling
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          ZMW
        </p>
      </td>

      <td>
        <p>
          Zk
        </p>
      </td>

      <td>
        <p>
          Zambian Kwacha
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BOB
        </p>
      </td>

      <td>
        <p>
          \$B
        </p>
      </td>

      <td>
        <p>
          Bolivian Boliviano
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CRC
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Costa Rican Colón
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          DOP
        </p>
      </td>

      <td>
        <p>
          Rd
        </p>
      </td>

      <td>
        <p>
          Dominican Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          GTQ
        </p>
      </td>

      <td>
        <p>
          Q
        </p>
      </td>

      <td>
        <p>
          Guatemalan Quetzal
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          HNL
        </p>
      </td>

      <td>
        <p>
          L
        </p>
      </td>

      <td>
        <p>
          Honduran Lempira
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          NIO
        </p>
      </td>

      <td>
        <p>
          C\$
        </p>
      </td>

      <td>
        <p>
          Nicaraguan Córdoba
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PAB
        </p>
      </td>

      <td>
        <p>
          B/
        </p>
      </td>

      <td>
        <p>
          Panamanian Balboa
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PYG
        </p>
      </td>

      <td>
        <p>
          Gs
        </p>
      </td>

      <td>
        <p>
          Paraguayan Guaraní
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          PEN
        </p>
      </td>

      <td>
        <p>
          S/
        </p>
      </td>

      <td>
        <p>
          Peruvian Nuevo Sol
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          UYU
        </p>
      </td>

      <td>
        <p>
          \$U
        </p>
      </td>

      <td>
        <p>
          Uruguayan Peso
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          VEF
        </p>
      </td>

      <td>
        <p>
          Bs
        </p>
      </td>

      <td>
        <p>
          Venezuelan Bolívar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          XAF
        </p>
      </td>

      <td>
        <p>
          Fr
        </p>
      </td>

      <td>
        <p>
          Central African Cfa Franc
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          XOF
        </p>
      </td>

      <td>
        <p>
          Fr
        </p>
      </td>

      <td>
        <p>
          West African Cfa Franc
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          HTG
        </p>
      </td>

      <td>
        <p>
          G
        </p>
      </td>

      <td>
        <p>
          Haitian Gourde
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MGA
        </p>
      </td>

      <td>
        <p>
          Ar
        </p>
      </td>

      <td>
        <p>
          Malagasy Ariary
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          DZD
        </p>
      </td>

      <td>
        <p>
          د
        </p>
      </td>

      <td>
        <p>
          Algerian Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          IQD
        </p>
      </td>

      <td>
        <p>
          د
        </p>
      </td>

      <td>
        <p>
          Iraqi Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          LYD
        </p>
      </td>

      <td>
        <p>
          ل
        </p>
      </td>

      <td>
        <p>
          Libyan Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TND
        </p>
      </td>

      <td>
        <p>
          د
        </p>
      </td>

      <td>
        <p>
          Tunisian Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          YER
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Yemeni Rial
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          BND
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Brunei Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AOA
        </p>
      </td>

      <td>
        <p>
          Kz
        </p>
      </td>

      <td>
        <p>
          Angolan Kwanza
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MZN
        </p>
      </td>

      <td>
        <p>
          Mt
        </p>
      </td>

      <td>
        <p>
          Mozambican Metical
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AMD
        </p>
      </td>

      <td>
        <p>
          Am
        </p>
      </td>

      <td>
        <p>
          Armenian Dram
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          AZN
        </p>
      </td>

      <td>
        <p>
          М
        </p>
      </td>

      <td>
        <p>
          Azerbaijani Manat
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          KGS
        </p>
      </td>

      <td>
        <p>
          Л
        </p>
      </td>

      <td>
        <p>
          Kyrgyzstani Som
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TJS
        </p>
      </td>

      <td>
        <p>
          Tj
        </p>
      </td>

      <td>
        <p>
          Tajikistani Somoni
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          UZS
        </p>
      </td>

      <td>
        <p>
          Л
        </p>
      </td>

      <td>
        <p>
          Uzbekistani Som
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MDL
        </p>
      </td>

      <td>
        <p>
          L
        </p>
      </td>

      <td>
        <p>
          Moldovan Leu
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          RSD
        </p>
      </td>

      <td>
        <p>
          Д
        </p>
      </td>

      <td>
        <p>
          Serbian Dinar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          XPF
        </p>
      </td>

      <td>
        <p>
          Fr
        </p>
      </td>

      <td>
        <p>
          Cfp Franc
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          MOP
        </p>
      </td>

      <td>
        <p>
          Mo
        </p>
      </td>

      <td>
        <p>
          Macanese Pataca
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          VND
        </p>
      </td>

      <td>
        <p>
          N/A
        </p>
      </td>

      <td>
        <p>
          Viet Nam Dong
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          TWD
        </p>
      </td>

      <td>
        <p>
          Nt
        </p>
      </td>

      <td>
        <p>
          Taiwan Dollar
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          CLP
        </p>
      </td>

      <td>
        <p>
          \$
        </p>
      </td>

      <td>
        <p>
          Chilean Peso
        </p>
      </td>
    </tr>
  </tbody>
</table>

***

## **Timezones**

Below is a table of all timezone values supported for the `timezone` field of your stats report requests. UTC will be default timezone if not specified.

| Continent / Country / City       |
| :------------------------------- |
| Africa/Abidjan                   |
| Africa/Accra                     |
| Africa/Addis\_Ababa              |
| Africa/Algiers                   |
| Africa/Asmara                    |
| Africa/Bamako                    |
| Africa/Bangui                    |
| Africa/Banjul                    |
| Africa/Bissau                    |
| Africa/Blantyre                  |
| Africa/Brazzaville               |
| Africa/Bujumbura                 |
| Africa/Cairo                     |
| Africa/Casablanca                |
| Africa/Ceuta                     |
| Africa/Conakry                   |
| Africa/Dakar                     |
| Africa/Dar\_es\_Salaam           |
| Africa/Djibouti                  |
| Africa/Douala                    |
| Africa/El\_Aaiun                 |
| Africa/Freetown                  |
| Africa/Gaborone                  |
| Africa/Harare                    |
| Africa/Johannesburg              |
| Africa/Juba                      |
| Africa/Kampala                   |
| Africa/Khartoum                  |
| Africa/Kigali                    |
| Africa/Kinshasa                  |
| Africa/Lagos                     |
| Africa/Libreville                |
| Africa/Lome                      |
| Africa/Luanda                    |
| Africa/Lubumbashi                |
| Africa/Lusaka                    |
| Africa/Malabo                    |
| Africa/Maputo                    |
| Africa/Maseru                    |
| Africa/Mbabane                   |
| Africa/Mogadishu                 |
| Africa/Monrovia                  |
| Africa/Nairobi                   |
| Africa/Ndjamena                  |
| Africa/Niamey                    |
| Africa/Nouakchott                |
| Africa/Ouagadougou               |
| Africa/Porto-Novo                |
| Africa/Sao\_Tome                 |
| Africa/Tripoli                   |
| Africa/Tunis                     |
| Africa/Windhoek                  |
| America/Adak                     |
| America/Anchorage                |
| America/Anguilla                 |
| America/Antigua                  |
| America/Araguaina                |
| America/Argentina/Buenos\_Aires  |
| America/Argentina/Catamarca      |
| America/Argentina/Cordoba        |
| America/Argentina/Jujuy          |
| America/Argentina/La\_Rioja      |
| America/Argentina/Mendoza        |
| America/Argentina/Rio\_Gallegos  |
| America/Argentina/Salta          |
| America/Argentina/San\_Juan      |
| America/Argentina/San\_Luis      |
| America/Argentina/Tucuman        |
| America/Argentina/Ushuaia        |
| America/Aruba                    |
| America/Asuncion                 |
| America/Atikokan                 |
| America/Bahia                    |
| America/Bahia\_Banderas          |
| America/Barbados                 |
| America/Belem                    |
| America/Belize                   |
| America/Blanc-Sablon             |
| America/Boa\_Vista               |
| America/Bogota                   |
| America/Boise                    |
| America/Cambridge\_Bay           |
| America/Campo\_Grande            |
| America/Cancun                   |
| America/Caracas                  |
| America/Cayenne                  |
| America/Cayman                   |
| America/Chicago                  |
| America/Chihuahua                |
| America/Costa\_Rica              |
| America/Creston                  |
| America/Cuiaba                   |
| America/Curacao                  |
| America/Danmarkshavn             |
| America/Dawson                   |
| America/Dawson\_Creek            |
| America/Denver                   |
| America/Detroit                  |
| America/Dominica                 |
| America/Edmonton                 |
| America/Eirunepe                 |
| America/El\_Salvador             |
| America/Fortaleza                |
| America/Glace\_Bay               |
| America/Godthab                  |
| America/Goose\_Bay               |
| America/Grand\_Turk              |
| America/Grenada                  |
| America/Guadeloupe               |
| America/Guatemala                |
| America/Guayaquil                |
| America/Guyana                   |
| America/Halifax                  |
| America/Havana                   |
| America/Hermosillo               |
| America/Indiana/Indianapolis     |
| America/Indiana/Knox             |
| America/Indiana/Marengo          |
| America/Indiana/Petersburg       |
| America/Indiana/Tell\_City       |
| America/Indiana/Vevay            |
| America/Indiana/Vincennes        |
| America/Indiana/Winamac          |
| America/Inuvik                   |
| America/Iqaluit                  |
| America/Jamaica                  |
| America/Juneau                   |
| America/Kentucky/Louisville      |
| America/Kentucky/Monticello      |
| America/Kralendijk               |
| America/La\_Paz                  |
| America/Lima                     |
| America/Los\_Angeles             |
| America/Lower\_Princes           |
| America/Maceio                   |
| America/Managua                  |
| America/Manaus                   |
| America/Marigot                  |
| America/Martinique               |
| America/Matamoros                |
| America/Mazatlan                 |
| America/Menominee                |
| America/Merida                   |
| America/Metlakatla               |
| America/Mexico\_City             |
| America/Miquelon                 |
| America/Moncton                  |
| America/Monterrey                |
| America/Montevideo               |
| America/Montserrat               |
| America/Nassau                   |
| America/New\_York                |
| America/Nipigon                  |
| America/Nome                     |
| America/Noronha                  |
| America/North\_Dakota/Beulah     |
| America/North\_Dakota/Center     |
| America/North\_Dakota/New\_Salem |
| America/Ojinaga                  |
| America/Panama                   |
| America/Pangnirtung              |
| America/Paramaribo               |
| America/Phoenix                  |
| America/Port\_of\_Spain          |
| America/Port-au-Prince           |
| America/Porto\_Velho             |
| America/Puerto\_Rico             |
| America/Rainy\_River             |
| America/Rankin\_Inlet            |
| America/Recife                   |
| America/Regina                   |
| America/Resolute                 |
| America/Rio\_Branco              |
| America/Santarem                 |
| America/Santiago                 |
| America/Santo\_Domingo           |
| America/Sao\_Paulo               |
| America/Scoresbysund             |
| America/Sitka                    |
| America/St\_Barthelemy           |
| America/St\_Kitts                |
| America/St\_Lucia                |
| America/St\_Thomas               |
| America/St\_Vincent              |
| America/Swift\_Current           |
| America/Tegucigalpa              |
| America/Thule                    |
| America/Thunder\_Bay             |
| America/Tijuana                  |
| America/Toronto                  |
| America/Tortola                  |
| America/Vancouver                |
| America/Whitehorse               |
| America/Winnipeg                 |
| America/Yakutat                  |
| America/Yellowknife              |
| Antarctica/Casey                 |
| Antarctica/Davis                 |
| Antarctica/DumontDUrville        |
| Antarctica/Macquarie             |
| Antarctica/Mawson                |
| Antarctica/McMurdo               |
| Antarctica/Palmer                |
| Antarctica/Rothera               |
| Antarctica/Syowa                 |
| Antarctica/Troll                 |
| Antarctica/Vostok                |
| Arctic/Longyearbyen              |
| Asia/Aden                        |
| Asia/Almaty                      |
| Asia/Amman                       |
| Asia/Anadyr                      |
| Asia/Aqtau                       |
| Asia/Aqtobe                      |
| Asia/Ashgabat                    |
| Asia/Baghdad                     |
| Asia/Bahrain                     |
| Asia/Baku                        |
| Asia/Bangkok                     |
| Asia/Beirut                      |
| Asia/Bishkek                     |
| Asia/Brunei                      |
| Asia/Chita                       |
| Asia/Choibalsan                  |
| Asia/Damascus                    |
| Asia/Dhaka                       |
| Asia/Dili                        |
| Asia/Dubai                       |
| Asia/Dushanbe                    |
| Asia/Gaza                        |
| Asia/Hebron                      |
| Asia/Ho\_Chi\_Minh               |
| Asia/Hong\_Kong                  |
| Asia/Hovd                        |
| Asia/Irkutsk                     |
| Asia/Jakarta                     |
| Asia/Jayapura                    |
| Asia/Jerusalem                   |
| Asia/Kamchatka                   |
| Asia/Karachi                     |
| Asia/Khandyga                    |
| Asia/Krasnoyarsk                 |
| Asia/Kuala\_Lumpur               |
| Asia/Kuching                     |
| Asia/Kuwait                      |
| Asia/Macau                       |
| Asia/Magadan                     |
| Asia/Makassar                    |
| Asia/Manila                      |
| Asia/Muscat                      |
| Asia/Nicosia                     |
| Asia/Novokuznetsk                |
| Asia/Novosibirsk                 |
| Asia/Omsk                        |
| Asia/Oral                        |
| Asia/Phnom\_Penh                 |
| Asia/Pontianak                   |
| Asia/Pyongyang                   |
| Asia/Qatar                       |
| Asia/Qyzylorda                   |
| Asia/Riyadh                      |
| Asia/Sakhalin                    |
| Asia/Samarkand                   |
| Asia/Seoul                       |
| Asia/Shanghai                    |
| Asia/Singapore                   |
| Asia/Srednekolymsk               |
| Asia/Taipei                      |
| Asia/Tashkent                    |
| Asia/Tbilisi                     |
| Asia/Thimphu                     |
| Asia/Tokyo                       |
| Asia/Ulaanbaatar                 |
| Asia/Urumqi                      |
| Asia/Ust-Nera                    |
| Asia/Vientiane                   |
| Asia/Vladivostok                 |
| Asia/Yakutsk                     |
| Asia/Yekaterinburg               |
| Asia/Yerevan                     |
| Atlantic/Azores                  |
| Atlantic/Bermuda                 |
| Atlantic/Canary                  |
| Atlantic/Cape\_Verde             |
| Atlantic/Faroe                   |
| Atlantic/Madeira                 |
| Atlantic/Reykjavik               |
| Atlantic/South\_Georgia          |
| Atlantic/St\_Helena              |
| Atlantic/Stanley                 |
| Australia/Brisbane               |
| Australia/Currie                 |
| Australia/Hobart                 |
| Australia/Lindeman               |
| Australia/Melbourne              |
| Australia/Perth                  |
| Australia/Sydney                 |
| Europe/Amsterdam                 |
| Europe/Andorra                   |
| Europe/Athens                    |
| Europe/Belgrade                  |
| Europe/Berlin                    |
| Europe/Bratislava                |
| Europe/Brussels                  |
| Europe/Bucharest                 |
| Europe/Budapest                  |
| Europe/Busingen                  |
| Europe/Chisinau                  |
| Europe/Copenhagen                |
| Europe/Dublin                    |
| Europe/Gibraltar                 |
| Europe/Guernsey                  |
| Europe/Helsinki                  |
| Europe/Isle\_of\_Man             |
| Europe/Istanbul                  |
| Europe/Jersey                    |
| Europe/Kaliningrad               |
| Europe/Kiev                      |
| Europe/Lisbon                    |
| Europe/Ljubljana                 |
| Europe/London                    |
| Europe/Luxembourg                |
| Europe/Madrid                    |
| Europe/Malta                     |
| Europe/Mariehamn                 |
| Europe/Minsk                     |
| Europe/Monaco                    |
| Europe/Moscow                    |
| Europe/Oslo                      |
| Europe/Paris                     |
| Europe/Podgorica                 |
| Europe/Prague                    |
| Europe/Riga                      |
| Europe/Rome                      |
| Europe/Samara                    |
| Europe/San\_Marino               |
| Europe/Sarajevo                  |
| Europe/Simferopol                |
| Europe/Skopje                    |
| Europe/Sofia                     |
| Europe/Stockholm                 |
| Europe/Tallinn                   |
| Europe/Tirane                    |
| Europe/Uzhgorod                  |
| Europe/Vaduz                     |
| Europe/Vatican                   |
| Europe/Vienna                    |
| Europe/Vilnius                   |
| Europe/Volgograd                 |
| Europe/Warsaw                    |
| Europe/Zagreb                    |
| Europe/Zaporozhye                |
| Europe/Zurich                    |
| Indian/Antananarivo              |
| Indian/Chagos                    |
| Indian/Christmas                 |
| Indian/Comoro                    |
| Indian/Kerguelen                 |
| Indian/Mahe                      |
| Indian/Maldives                  |
| Indian/Mauritius                 |
| Indian/Mayotte                   |
| Indian/Reunion                   |
| Pacific/Apia                     |
| Pacific/Auckland                 |
| Pacific/Bougainville             |
| Pacific/Chuuk                    |
| Pacific/Easter                   |
| Pacific/Efate                    |
| Pacific/Enderbury                |
| Pacific/Fakaofo                  |
| Pacific/Fiji                     |
| Pacific/Funafuti                 |
| Pacific/Galapagos                |
| Pacific/Gambier                  |
| Pacific/Guadalcanal              |
| Pacific/Guam                     |
| Pacific/Honolulu                 |
| Pacific/Kiritimati               |
| Pacific/Kosrae                   |
| Pacific/Kwajalein                |
| Pacific/Majuro                   |
| Pacific/Midway                   |
| Pacific/Nauru                    |
| Pacific/Niue                     |
| Pacific/Norfolk                  |
| Pacific/Noumea                   |
| Pacific/Pago\_Pago               |
| Pacific/Palau                    |
| Pacific/Pitcairn                 |
| Pacific/Pohnpei                  |
| Pacific/Port\_Moresby            |
| Pacific/Rarotonga                |
| Pacific/Saipan                   |
| Pacific/Tahiti                   |
| Pacific/Tarawa                   |
| Pacific/Tongatapu                |
| Pacific/Wake                     |

| Timezone Codes |
| :------------- |
| GMT            |
| ACDT           |
| ACST           |
| ACT            |
| ACWST          |
| ADT            |
| AEDT           |
| AEST           |
| AFT            |
| AKDT           |
| AKST           |
| ALMT           |
| AMST           |
| AMT            |
| ANAST          |
| ANAT           |
| ART            |
| AST            |
| AWST           |
| AZOST          |
| AZOT           |
| AZST           |
| AZT            |
| BNT            |
| BOT            |
| BRST           |
| BRT            |
| BST            |
| BTT            |
| CAST           |
| CCT            |
| CDT            |
| CEST           |
| CET            |
| CHADT          |
| CHAST          |
| CHUT           |
| CKT            |
| CLST           |
| CLT            |
| COT            |
| CST            |
| CXT            |
| DAVT           |
| DDUT           |
| EASST          |
| EAST           |
| EAT            |
| EDT            |
| EEST           |
| EET            |
| EGST           |
| EGT            |
| EST            |
| FET            |
| FJST           |
| FJT            |
| FKST           |
| FKT            |
| FNT            |
| GALT           |
| GAMT           |
| GET            |
| GFT            |
| GILT           |
| GMT            |
| GYT            |
| HKT            |
| HST            |
| ICT            |
| IDT            |
| IOT            |
| IRKST          |
| IRKT           |
| IST            |
| JST            |
| KGT            |
| KOST           |
| KRAST          |
| KRAT           |
| KST            |
| LHDT           |
| LHST           |
| LINT           |
| MAGST          |
| MAGT           |
| MART           |
| MAWT           |
| MDT            |
| MHT            |
| MMT            |
| MSD            |
| MSK            |
| MST            |
| MUT            |
| MVT            |
| MYT            |
| NDT            |
| NFT            |
| NOVST          |
| NOVT           |
| NPT            |
| NST            |
| NUT            |
| NZDT           |
| NZST           |
| OMSST          |
| OMST           |
| PDT            |
| PET            |
| PETST          |
| PETT           |
| PGT            |
| PHOT           |
| PHT            |
| PKT            |
| PMDT           |
| PMST           |
| PONT           |
| PST            |
| PWT            |
| PYST           |
| PYT            |
| RET            |
| SAST           |
| SCT            |
| SGT            |
| TAHT           |
| TFT            |
| TJT            |
| TKT            |
| TMT            |
| TOT            |
| TVT            |
| ULAST          |
| ULAT           |
| UTC            |
| UYST           |
| UYT            |
| UZT            |
| VET            |
| VLAST          |
| VLAT           |
| VUT            |
| WAKT           |
| WAST           |
| WAT            |
| WET            |
| WFT            |
| WGST           |
| WGT            |
| YAKST          |
| YAKT           |
| YAPT           |
| YEKST          |
| YEKT           |

| UTC / ETC Offsets |
| :---------------- |
| UTC -12           |
| UTC -11           |
| UTC -10           |
| UTC -9:30         |
| UTC -9            |
| UTC -8            |
| UTC -7            |
| UTC -6            |
| UTC -5            |
| UTC -4            |
| UTC -3:30         |
| UTC -3            |
| UTC -2:30         |
| UTC -2            |
| UTC -1            |
| UTC-12            |
| UTC-11            |
| UTC-10            |
| UTC-9:30          |
| UTC-9             |
| UTC-8             |
| UTC-7             |
| UTC-6             |
| UTC-5             |
| UTC-4             |
| UTC-3:30          |
| UTC-3             |
| UTC-2:30          |
| UTC-2             |
| UTC-1             |
| UTC               |
| UTC+0             |
| UTC+1             |
| UTC+2             |
| UTC+3             |
| UTC+3:30          |
| UTC+4             |
| UTC+4:30          |
| UTC+5             |
| UTC+5:30          |
| UTC+5:45          |
| UTC+6             |
| UTC+6:30          |
| UTC+7             |
| UTC+8             |
| UTC+8:30          |
| UTC+8:45          |
| UTC+9             |
| UTC+9:30          |
| UTC+10            |
| UTC+10:30         |
| UTC+11            |
| UTC+12            |
| UTC+12            |
| UTC+12:45         |
| UTC+13            |
| UTC+13:45         |
| UTC+14            |
| UTC +0            |
| UTC +1            |
| UTC +2            |
| UTC +3            |
| UTC +3:30         |
| UTC +4            |
| UTC +4:30         |
| UTC +5            |
| UTC +5:30         |
| UTC +5:45         |
| UTC +6            |
| UTC +6:30         |
| UTC +7            |
| UTC +8            |
| UTC +8:30         |
| UTC +8:45         |
| UTC +9            |
| UTC +9:30         |
| UTC +10           |
| UTC +10:30        |
| UTC +11           |
| UTC +12           |
| UTC +12:45        |
| UTC +13           |
| UTC +13:45        |
| UTC +14           |
| ETC/GMT           |
| ETC/GMT-0         |
| ETC/GMT-1         |
| ETC/GMT-2         |
| ETC/GMT-3         |
| ETC/GMT-4         |
| ETC/GMT-5         |
| ETC/GMT-6         |
| ETC/GMT-7         |
| ETC/GMT-8         |
| ETC/GMT-9         |
| ETC/GMT-10        |
| ETC/GMT-11        |
| ETC/GMT-12        |
| ETC/GMT-13        |
| ETC/GMT-14        |
| ETC/GMT+0         |
| ETC/GMT+1         |
| ETC/GMT+2         |
| ETC/GMT+3         |
| ETC/GMT+4         |
| ETC/GMT+5         |
| ETC/GMT+6         |
| ETC/GMT+7         |
| ETC/GMT+8         |
| ETC/GMT+9         |
| ETC/GMT+10        |
| ETC/GMT+11        |
| ETC/GMT+12        |
| ETC/GMT0          |
| ETC/Greenwich     |
| ETC/UCT           |
| ETC/Universal     |
| ETC/UTC           |

## What's next

* [Transaction IDs](/marketing-solutions/v2025.10/docs/transaction-ids)
* [Log-Level](/marketing-solutions/v2025.10/docs/log-level)
* [Placement](/marketing-solutions/v2025.10/docs/placement)
* [Placement Category](/marketing-solutions/v2025.10/docs/placement-category)
