Hi, on date 2020-02-05 (timezone UTC) line item id: gnvkh has 37,924 Link Clicks in the UI but in the API stats hourly report, the total of url clicks gets to - 45,516
Also the reported spend is different, in the UI we see $1,400.22
In the API report total spend gets to - 1693.229213

See screenshot:

Additional details:
Account id: gil+afternoonspecial@crunchmind.com
sub account: 18ce54wced2
line item id: gnvkh
resource async: POST /6/stats/jobs/accounts/18ce54wced2
Params:
{‘metric_groups’: ‘ENGAGEMENT,BILLING’, ‘start_time’: ‘2020-02-05T00:00:00Z’, ‘end_time’: ‘2020-02-06T00:00:00Z’, ‘granularity’: ‘HOUR’, ‘entity’: ‘LINE_ITEM’, ‘placement’: ‘ALL_ON_TWITTER’, ‘entity_ids’: ‘gnvkh’, ‘platform’: None, ‘country’: None, ‘segmentation_type’: None}

Can you please look into it?
Let me know if you need any additional information.
Thanks!

Hello, @eladzaa. Thanks for providing these details.

We just made the request given the information you provided and are seeing that both the spend and link clicks are matching. See the API request below (we’re only listing the spend and clicks for improved readability):

$ twurl -H ads-api.twitter.com "/6/stats/accounts/18ce54wced2?entity=LINE_ITEM&entity_ids=gnvkh&placement=ALL_ON_TWITTER&metric_groups=ENGAGEMENT,BILLING&start_time=2020-02-05&end_time=2020-02-06&granularity=TOTAL"
{
  "data_type": "stats",
  "time_series_length": 1,
  "data": [
    {
      "id": "gnvkh",
      "id_data": [
        {
          "segment": null,
          "metrics": {
            "billed_charge_local_micro": [
              1400221260
            ],
            "url_clicks": [
              37924
            ],
            ...
          }
        }
      ]
    }
  ],
  "request": {
    "params": {
      "start_time": "2020-02-04T22:00:00Z",
      "segmentation_type": null,
      "entity_ids": [
        "gnvkh"
      ],
      "end_time": "2020-02-05T22:00:00Z",
      "country": null,
      "placement": "ALL_ON_TWITTER",
      "granularity": "TOTAL",
      "entity": "LINE_ITEM",
      "platform": null,
      "metric_groups": [
        "ENGAGEMENT",
        "BILLING"
      ]
    }
  }
}