Hi Folks,
I'm currently using the App Store Connect API's perfPowerMetrics endpoint to pull launch time metrics for my app, but I want to break down the data by specific iPhone models (e.g., iPhone 13 Pro, iPhone 12, etc.). I’ve tried using filter[deviceType] set to all_iphones, which works, but it aggregates data for all iPhone models.
Does anyone know the specific identifiers for individual iPhone models, or if there's a way to retrieve metrics by specific iPhone model segments?
TIA
Hello If you don't specify any deviceType filter, you will get data for device categories (all iPhone and all iPad) and data for individual devices in a single call. But if you want to make separate call for individual devices, you can do something like filter[deviceType]=iPad11_6 Note you have to use underscore instead of comma for device names.
Thanks!!!