Advanced Query API for iOS Apps


Run an advanced query with multiple filters and sorting for all available app parameters for iPhone and iPad apps. Ideal for data analysis and market insights of the Apple App Store™. Use our Explorer to build your specific query visually and then extract data automatically with this API.

Definition

Endpoint:

POST https://data.42matters.com/api/v2.0/ios/apps/query.json

Hits per request:

3 (Note: if you request multiple apps by trackId or bundleId we account 1 hit per app)

Rate limit:

5 QPS

Required plan:

Tiny or above.

Parameters

Name Required Description Available Values Default
access_token required Your access token for using this API. You can get it for FREE by signing up .
lang optional The language you want to use when returning app data. If no translation is available the default language of the app is used. Internationalized fields include include trackCensoredName, screenshotUrls, releaseNotes, ipadScreenshotUrls, description. ID of Supported Languages en
app_country optional Return country-specific app metadata. Country-specific fields are include currency, price, formattedPrice, userRatingCount, userRatingCountForCurrentVersion, averageUserRating, averageUserRatingForCurrentVersion. If the country is not supported, then the default metadata of the app is returned. ID of Supported Countries US
fields optional Comma-separated list of fields to return
limit optional For pagination purposes you can override the number of apps to return via a GET limit parameter in the url. Range 1-50. 1-50
page optional For pagination purposes you can override the page to return via a GET page parameter in the url. 1 - max pages. There is a limit of 10000 apps that can be iterated.
JSON Payload POST required 42matters Advanced Query API features a full Query DSL based on JSON to define queries. Try the App Market Explorer for iOS to get a feeling of what is possible with the Advanced Query API.

See how to build my query?

Query

Example Queries to get your started

curl -XPOST "https://data.42matters.com/api/v2.0/ios/apps/query.json?access_token=YOUR_ACCESS_TOKEN" -d ''

Not sure how to use cURL? Learn how to import the examples in the free Postman app.

Query filters and parameters

Name Required Description Available Values Default Required Plan
full_text_term optional Full-text search over the entire App Store store. By default searching only in app titles Any search term. Maximum character length 1000.

Supports up to 10 conditional clauses such as AND, OR and NOT. For example:

racing OR drag NOT moto
facebook AND lite
Tiny
full_text_search_flag optional Search flag, specifying how the full text search should be performed. Only together with full_text_term. words_only - do not perform any partial matches, only words will be matched
title_exact_match - Exact match on app title for the given full-text term. Case-sensitive .
phrase - will match the phrases like "app store"
Standard search including partial matches. Tiny
include_full_text_desc optional Include description in full-text search. Only together with full_text_term. true, false Tiny
include_developer optional Include developer name (app publisher) in full-text search. Only together with full_text_term. true, false Tiny
trackId optional List of exact app ids to match. App ids on App Store can be found in the app URL on the App Store website - (e.g for Facebook the ID is 284882215) List of app ids available on App Store. Each app requested by trackId costs 1 hit. Tiny
bundleId optional List of bundle ids to match. Bundle ids are internal and are known to developers or publishers of apps. Bundle ids are case-sensitive. List of app bundle ids available on App Store. Each app requested by bundleId costs 1 hit. Tiny
bundleId_case_insensitive optional Consider bundleIds as case-insensitive. Only together with bundleId. true, false false Tiny
bundleId_prefix_search optional Filter apps by bundleId prefix. Only together with bundleId and only when a single bundleId name has been provided. true, false Tiny
market_source optional List of market sources (stores) for the app. ITUNES
MACOS
ITUNES Tiny
market_status optional List of app statuses on the selected markets. PUBLISHED
UNPUBLISHED
PUBLISHED Tiny
device optional Filter by device type. "iphone"
"ipad"
"iphone_and_ipad"
"watch"
Tiny
artistName optional Full-text search only in the app developer name. Any app developer name or part of it. Tiny
artist_exact_match optional Exact match on developer name. Only together with artistName. true, false Tiny
artistId optional Filter apps based on a numeric developer id. Any valid App Store developer id. Tiny
primaryGenreId optional Filter apps by App Store primary genres. Multiple genres are interpreted as an OR. List of App Store genres. Tiny
genreIds optional Filter apps by App Store secondary genres. App Store apps can have multiple secondary genres. Multiple genres are interpreted as an OR. List of App Store genres. Tiny
price_flag optional Filter apps by price in USD. "free"
"paid"
"custom"
Tiny
price_gte optional Price greater than or equal to given value. Any double value. Tiny
price_lte optional Price less than or equal to given value. Any double value. Tiny
rating_gte optional Rating greater than or equal to given value. Any double value between 0.0 and 5.0 Tiny
rating_lte optional Rating less than or equal to given value. Any double value between 0.0 and 5.0 Tiny
ratings_count_gte optional Number of ratings greater than or equal to given value. Any integer value ≥ 0 Tiny
ratings_count_lte optional Number of ratings less than or equal to given value. Any integer value ≥ 0 Tiny
rating_current_version_only optional Apply the rating_gte, rating_lte, ratings_count_gte and ratings_count_lte and sort by rating and rating count only to the current version of the apps. true, false Tiny
size_gte optional Size in MB greater than or equal to given value. Any double value. Tiny
size_lte optional Size in MB less than or equal to given value. Any double value. Tiny
contentAdvisoryRating optional Filter apps by content advisory rating. Multiple content ratings are interpreted as an OR. "4+"
"9+"
"12+"
"17+"
"Not yet rated"
Tiny
isGameCenterEnabled optional Whether or not an app has enable game center. true, false Tiny
i18n_lang optional Filter apps by supported languages (of their description). JSON object with the format:

{
  "any": {
    "lang": [
      "LANGUAGE_CODE_1",
      "LANGUAGE_CODE_2"
    ]
  },
  "all": {
    "lang": [
      "LANGUAGE_CODE_3"
    ]
  },
  "none": {
    "lang": [
      "LANGUAGE_CODE_4"
    ]
  },
}
where "LANGUAGE_CODE" is one of the supported language codes.

A request for apps only translated in selected languages can be done with the optional "only" flag.

{
  "all": {
    "lang": [
      "LANGUAGE_CODE"
    ],
    "only": true
  }
}
Tiny
advisories optional Filter apps by Advisories JSON object with the format:

{
  "any": [
    "Infrequent/Mild Horror/Fear Themes",
    "Unrestricted Web Access"
  ],
  "all": [
    "Gambling and Contests"
  ]
}
List of Advisories.

Tiny
hasInAppPurchases optional Whether or not an app has in app purchases. true, false Tiny
sort optional Sort returned apps by a sorting criteria.
Value Description
userRatingCount Sort by number of ratings
score Search score based on app popularity and search relevance (if full text search is used). sort_order is automatically set to 'desc' to show most relevant matches.
averageUserRating Sort by rating
price Sort by price
size Sort by size
alphabetical Sort alphabetically
currentVersionReleaseDate Sort by Last Update Date
releaseDate Sort by Release Date
unpublished_timestamp Sort by Unpublished Timestamp
relevance Pure search relevance of search term. Only together with full_text_term. sort_order is automatically set to 'desc' to show most relevant matches.
userRatingCount Tiny
sort_order optional Sort ordering. desc
asc
desc Tiny
from optional Return results starting from result number. Overridden by a page and limit GET parameters. Maximum of 10000 apps can be iterated. 0 Tiny
num optional Number of results to return. Overridden by a page and limit GET parameters. Maximum of 50 apps can be returned with one query. 50 Tiny
physical_address optional Search for a term in the Physical Address of developers. E.g. search for a city - 'London'. Search term Small
publisher_geo_context optional Filter apps by publisher country of residence. Useful to discover apps developer in a particular country. JSON object with the format:

{
  "any": {
    "country": [
      "COUNTRY_CODE_1",
      "COUNTRY_CODE_2"
    ]
  }
}
where "COUNTRY_CODE" is one of the supported country codes.

Small
released_after_dynamic optional Filter apps by "released timestamp". "last_day"
"last_week"
"last_month"
Small
released_after optional Released after a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
Small
released_before optional Released before a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
Small
unpublished_after optional Unpublished after a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
or one of
"last_day"
"last_week"
"last_month"
Small
unpublished_before optional Unpublished before a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
Small
market_update_dynamic optional Filter apps by "updated timestamp". "last_day"
"last_week"
"last_month"
Small
market_update_after optional Updated after a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
Small
market_update_before optional Updated before a particular date. Date string in ISO 8601 format,
YYYY-MM-DD
e.g.
"2016-05-31".
Small
domain_search_term optional Full-text search in the website/domain fields for ios apps. The domain search term. Tiny
domain_search_in optional Domain search in the following fields. List of strings. Available options are:
"sellerUrl"
Tiny
domain_exact_match optional Exact match flag for domain search, no full-text matching. true,false Tiny
available_in optional Filter apps by supported countries. JSON object with the format:

{
  "any": {
    "country": [
      "COUNTRY_CODE_1",
      "COUNTRY_CODE_2"
    ]
  },
  "all": {
    "country": [
      "COUNTRY_CODE_3"
    ]
  },
  "none": {
    "country": [
      "COUNTRY_CODE_4"
    ]
  },
}
where "COUNTRY_CODE" is one of the supported country codes.

A request for apps only available in selected country can be done with the optional "only" flag.

{
  "all": {
    "country": [
      "COUNTRY_CODE"
    ],
    "only": true
  }
}
Small
ranking optional Filter apps whether they appear in any Top Charts. JSON object with the format:
{
  "list_name": "_ANY",
  "primary_genre_id": "_ANY",
  "country": "_ANY",
  "device_type": "_ANY",
  "rank_gte": 0,
  "rank_lte": 600
}
Available values for list_name, primary_genre_id, country and device_type can be seen on Google Play Top Charts docs.
Small
privacyPolicyUrl optional Whether or not an app has 'privacy policy url' or not. true, false Small
iab optional Filter apps by IAB Categories. JSON object with the format:
{
  "any": [
    {
      "id": IAB_ID,
      "type": "inferred"
    }
  ],
  "all": [
    {
      "id": IAB_ID,
      "type": "declared_by_dev"
    }
  ]
}
where IAB_ID is the id of a valid IAB Category and "type" is optional, defaulting to "inferred" or "declared_by_dev".
Medium
more_like_this optional Find apps that are "like" or "unlike" a set of another apps. Based on textual description. JSON object with the format:
{
  "like": [
    "TRACK_ID_1",
    "TRACK_ID_2",
    ..
  ],
  "unlike": [
    "TRACK_ID_3",
    ..
  ]
}
At least one entry in "like" or "unlike" is required.
Medium
review_analysis optional Filter apps based on review sentiment and review topics. JSON object with the format:
{
  "all": [
    {
      "topic_id": "TOPIC_ID",
      "sentiment": "SENTIMENT"
    }
  ]
}
Available values for topic_id can be found on Review Topics. Available values for sentiment parameter are positive or negative.
Medium
any_permissions optional Filter apps based on a list of permissions. The list of permissions is interpreted as an OR clause. Our supported list of iOS permissions. For example
[
  "NSLocationUsageDescription"
]
.
Medium
all_permissions optional Filter apps based on a list of permissions. The list of permissions is interpreted as an AND clause. Our supported list of iOS permissions. For example
[
  "NSLocationUsageDescription"
]
.
Medium
any_sdks optional Filter apps based on a list of SDK IDs. The list of SDK IDs is interpreted as an OR clause. List of iOS SDK IDs. For example
[
  "google-ads-admob"
]
.
Medium
all_sdks optional Filter apps based on a list of SDK IDs. The list of SDK IDs is interpreted as an AND clause. List of iOS SDK IDs. For example
[
  "google-ads-admob"
]
.
Medium
none_sdks optional Filter apps based on a negative list of SDK IDs. None of the given SDKs should be present in the resulting set of apps. List of iOS SDK IDs. For example
[
  "google-ads-admob"
]
.
Medium
requiredCapabilities optional Filter apps by the required capabilities of the device. Official Apple documentation. JSON object with the format:

{
  "any": [
    "arkit",
    "camera-flash"
  ],
  "all": [
    "nfc",
    "arm64"
  ]
}
List of possible Required Capabilities.

Medium
app_ads_txt optional Filter apps by App-ads.txt records. JSON object with the format:

{
  "any": [
    {
      "ad_domain_name": "AD_DOMAIN_NAME",
      "rel": "RELATIONSHIP",
      "pub_acc_id": "PUBLISHER_ACCOUNT_ID",
      "ca_id": "CERTIFICATE_AUTHORITY_ID"
    }
  ],
  "all": [
    {
      "ad_domain_name": "AD_DOMAIN_NAME",
      "rel": "RELATIONSHIP",
      "pub_acc_id": "PUBLISHER_ACCOUNT_ID",
      "ca_id": "CERTIFICATE_AUTHORITY_ID"
    }
  ],
  "none": [
    {
      "ad_domain_name": "AD_DOMAIN_NAME",
      "rel": "RELATIONSHIP",
      "pub_acc_id": "PUBLISHER_ACCOUNT_ID",
      "ca_id": "CERTIFICATE_AUTHORITY_ID"
    }
  ]
}
For more information about what each field means in the context of App-ads.txt please refer to App-ads.txt schema docs
Large
download_estimates optional Filter apps by last 30 days of estimated monthly downloads. period m1 = last month (default),m3 = last 3 months,m6 = last 6 months,y1 = last 12 months. For using period more than one month you need a Historical Data plan. JSON object with the format:

{
  "all": [
    {
      "country": [
        "US",
        "DE"
      ],
      "gte": 0,
      "lte": 50,
      "period": "m3"
    }
  ],
  "any": [
    {
      "country": [
        "US"
      ],
      "gte": 0,
      "lte": 50,
      "period": "m3"
    },
    {
      "country": [
        "DE"
      ],
      "gte": 50,
      "lte": 100
    }
  ],
  "sum": [
    {
      "country": [
        "US",
        "DE"
      ],
      "gte": 0,
      "lte": 5000
    }
  ]
}

Large
privacy optional Filter apps by privacy types. Official Apple documentation. JSON object with the format:

{
  "all": [
    {
      "type": "DATA_USED_TO_TRACK_YOU",
      "data_category": "CONTACT_INFO"
    },
    {
      "type": "DATA_LINKED_TO_YOU",
      "purpose": "DEVELOPERS_ADVERTISING",
      "data_category": "CONTACT_INFO",
      "data_type": "Email Address"
    }
  ],
  "any": [
    {
      "type": "DATA_NOT_LINKED_TO_YOU",
      "data_category": "CONTACT_INFO"
    }
  ],
  "none": [
    {
      "data_type": "User ID"
    }
  ]
}
List of supported Privacy Types. Use IDs to query.

Large
isPreorder optional Whether or not an app has a 'pre-order' flag or not. true, false Large

Responses

Status Code Indication Content-Type Body
200 Everything is OK application/json
Attribute Type Description
results Array List of iOS app objects
number_results Integer Number of found apps
page Integer Current page
limit Integer Limit on the number of apps used in the query
num_pages Integer Number of pages based on the given limit parameter
has_next Boolean Flag indicating if there is a next page available
402 Your request exceeds what's allowed by your current subscription plan application/json Error object
403 Your access token is not valid application/json Error object
429 Your request rate is over the limit application/json Error object

Example Request

Get the top 10 most rated apps on Apple App Store:

curl -XPOST "https://data.42matters.com/api/v2.0/ios/apps/query.json?access_token=YOUR_ACCESS_TOKEN&fields=trackId,trackCensoredName" -d ''

This request can also be imported into Postman. Check out our Postman integration guide.

Example Response

For query 'Top 10 most rated apps on iTunes'
{
  "results": [
    {
      "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/d9/36/75/d9367595-fbeb-4ee7-7eb3-18adaf380ce6/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/100x100bb.jpg",
      "r2": 202145,
      "r3": 304060,
      "userRatingCountForCurrentVersion": 45113033,
      "r4": 926003,
      "r5": 42852520,
      "averageUserRatingForCurrentVersion": 4.88867,
      "ipadScreenshotUrls": [
        "https://is4-ssl.mzstatic.com/image/thumb/Purple126/v4/10/4a/c0/104ac064-a13a-735a-ac7e-31a9a8be4c94/539c76eb-f80d-41e4-804e-ff2b366f5925_d40e52455be74f44b5e61e54777e4241.jpeg/2732x2048.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/b2/a7/dc/b2a7dc31-6caa-f4f5-582b-be4f0c625493/31a3e47b-94a9-4c17-8f00-e3bb3c44a6bf_eb631323700b461ea4ce005400628e0d.png/2732x2048.png",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/f2/53/16/f2531629-a855-d54e-27f5-3af4b8cf9ab3/4aff6ed8-173a-4d39-99c5-33efe7c9537d_fd5b01e0db5b464497b6eef1a4f6f303.jpg/2732x2048.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple126/v4/49/ba/32/49ba32c9-4b1f-4fea-35b3-9dcf657087fb/d79b46f3-61bc-42a8-b1c4-a8b990e529f6_f593ef1ab2f844669c880ab75df99867.jpg/2732x2048.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/06/33/3f/06333f90-3d1b-de31-d57f-24e969d329a5/bdd24e5d-f5ef-40e3-8821-86c7d39e6c53_e2c9afc894194d7299dd95bd2bf3a602.jpg/2732x2048.png"
      ],
      "artistId": 1170416082,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "性能改善让你的体验更流畅",
      "price": 0,
      "trackContentRating": "17+",
      "userRatingCount": 45113033,
      "contentAdvisoryRating": "17+",
      "trackId": 1142110895,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "EN",
        "ZH"
      ],
      "genreIds": [
        "6016"
      ],
      "iphone": true,
      "version": "24.4.0",
      "fileSizeBytes": "484362240",
      "artworkUrl60": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/d9/36/75/d9367595-fbeb-4ee7-7eb3-18adaf380ce6/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 484362240,
      "trackViewUrl": "https://apps.apple.com/cn/app/%E6%8A%96%E9%9F%B3/id1142110895?uo=4&at=10l9yE",
      "subtitle": "记录美好生活",
      "trackCensoredName": "抖音短视频",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "偶尔/轻微的色情内容或裸露",
        "频繁/强烈的竞赛",
        "偶尔/轻微的成人或性暗示题材",
        "偶尔/轻微的亵渎或低俗幽默",
        "偶尔/轻微的卡通或幻想暴力",
        "偶尔/轻微的惊悚或恐怖题材",
        "赌博"
      ],
      "screenshotUrls": [
        "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/7d/82/93/7d8293e9-795f-5500-eefc-27dc035f70d1/d8e59776-5c71-4d6e-bf7d-c093486df192_b8da317377c04a2b8c2b1f8c9b290603.png/1242x2208.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple126/v4/85/9e/d5/859ed5ee-069e-d3ad-c3f5-8962486ce554/9b590a24-b7b3-4c71-a48c-3a65d263db11_796abc123df44955afae0b597f59abea.png/1242x2208.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple116/v4/1e/06/7b/1e067b8c-3552-5916-5c22-14530693dc81/9a371d53-6c05-4cc4-a924-1db96e2fa46f_12583fa2a90d4d0f86ee94cf39a154ef.jpg/1242x2208.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple126/v4/0f/22/e0/0f22e00d-1a12-c9bf-8a5a-67baff2145e8/ced7f669-7388-4d66-a667-e3cb2465aec3_fc9af4edeff748069c1a50ab76126842.jpg/1242x2208.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple116/v4/3f/71/ec/3f71ece7-abda-7d32-67bd-f812c7be757a/4457075d-fa59-48d9-af7c-cfad1b4bbbe5_588cb1205e42416284f8be774f10f2f6.jpg/1242x2208.png",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/90/ce/71/90ce7139-a5fe-60e7-4169-a9d9821e2e32/fb83e850-313e-4ca0-ba76-cb72eb106809_cff5db835ee34fd0a9bbd989cca369cf.jpg/1242x2208.png"
      ],
      "i18n_lang": [
        "zh"
      ],
      "sellerName": "Beijing Microlive Vision Technology Co., Ltd",
      "supportUrl": "http://www.douyin.com/",
      "description": "抖音是一个帮助用户表达自我,记录美好生活的短视频平台。\n\n● 超多明星在抖音 \n在这里,你可以了解最新的明星内容和事件!可以对话吴亦凡,偶遇李现,还可以看到杨紫、潘长江等,你喜欢的明星都在抖音!\n\n● 记录美好在抖音\n智能匹配音乐、一键卡点视频,还有超多原创特效、滤镜、场景切换帮你一秒变大片,让你的生活轻松记录在抖音!\n\n● 实用内容在抖音\n生活妙招、美食做法、旅行攻略、科技知识、新闻时事、同城资讯,你需要的实用内容都在抖音!\n\n● 各行各业在抖音 \n原创音乐人、京剧演员、中国科学院教授、非遗传承人、烧烤摊老板、快递小哥等,每个人真实的生活都在抖音!\n\n全民记录自我,生活的美好都在这里!",
      "primaryGenreId": 6016,
      "artistViewUrl": "https://apps.apple.com/cn/developer/beijing-microlive-vision-technology-co-ltd/id1170416082?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "娱乐"
      ],
      "currency": "CNY",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "11.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.ss.iphone.ugc.Aweme",
      "artworkUrl512": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/d9/36/75/d9367595-fbeb-4ee7-7eb3-18adaf380ce6/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/512x512bb.jpg",
      "privacyPolicyUrl": "https://www.douyin.com/agreements/?id=6773901168964798477",
      "primaryGenreName": "Entertainment",
      "formattedPrice": "免费",
      "averageUserRating": 4.88867,
      "artistName": "Beijing Microlive Vision Technology Co., Ltd",
      "r1": 718997,
      "lang": "en",
      "app_country": "CN",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is4-ssl.mzstatic.com/image/thumb/Purple116/v4/84/7c/12/847c12a7-f5ce-b5fb-72cb-a53db6ab1f3c/logo_youtube_color-1x_U007emarketing-0-6-0-85-220.png/100x100bb.jpg",
      "r2": 388551,
      "r3": 913107,
      "userRatingCountForCurrentVersion": 29994916,
      "r4": 2630139,
      "r5": 24967268,
      "averageUserRatingForCurrentVersion": 4.67936,
      "ipadScreenshotUrls": [
        "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/0d/65/6f/0d656f27-a48a-3f14-a2f9-a0fbccc17a6f/mzl.soxnenam.jpg/576x768bb.jpg",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/1d/4e/d7/1d4ed7c5-0f11-a646-131f-aafd113024b2/mzl.odjiekca.jpg/576x768bb.jpg",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/b9/fd/dc/b9fddcdb-6f52-3f5c-b792-898b549f4b50/mzl.xgpxsdbq.jpg/576x768bb.jpg",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple116/v4/32/dd/a2/32dda20d-0424-dff5-2636-dabec11e8215/mzl.monqskwz.jpg/576x768bb.jpg",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/f1/8d/c5/f18dc523-3ae3-4822-7a7f-b35543dd8fd7/874e4458-7af3-45b9-8cd2-bf7ff6d03817_2048x2732bb__U00281_U0029.png/576x768bb.png"
      ],
      "artistId": 281956209,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "We fixed the tubes that bring you videos – and some bugs too.",
      "price": 0,
      "trackContentRating": "12+",
      "userRatingCount": 29994916,
      "contentAdvisoryRating": "12+",
      "trackId": 544007664,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "AF",
        "SQ",
        "AM",
        "AR",
        "HY",
        "AZ",
        "EU",
        "BE",
        "BN",
        "BS",
        "BG",
        "MY",
        "KM",
        "CA",
        "HR",
        "CS",
        "DA",
        "NL",
        "EN",
        "ET",
        "FI",
        "FR",
        "GL",
        "KA",
        "DE",
        "EL",
        "GU",
        "HE",
        "HI",
        "HU",
        "IS",
        "ID",
        "IT",
        "JA",
        "KN",
        "KK",
        "KO",
        "KY",
        "LO",
        "LV",
        "LT",
        "MK",
        "MS",
        "ML",
        "MR",
        "MN",
        "NE",
        "NB",
        "FA",
        "PL",
        "PT",
        "PA",
        "RO",
        "RU",
        "SR",
        "ZH",
        "SI",
        "SK",
        "SL",
        "ES",
        "SW",
        "SV",
        "TA",
        "TE",
        "TH",
        "ZH",
        "TR",
        "UK",
        "UR",
        "UZ",
        "VI",
        "ZU"
      ],
      "genreIds": [
        "6008",
        "6016"
      ],
      "iphone": true,
      "version": "18.10.1",
      "fileSizeBytes": 285637632,
      "artworkUrl60": "https://is4-ssl.mzstatic.com/image/thumb/Purple116/v4/84/7c/12/847c12a7-f5ce-b5fb-72cb-a53db6ab1f3c/logo_youtube_color-1x_U007emarketing-0-6-0-85-220.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 285637632,
      "trackViewUrl": "https://apps.apple.com/us/app/youtube-watch-listen-stream/id544007664?uo=4&at=10l9yE",
      "subtitle": "Videos, Music and Live Streams",
      "trackCensoredName": "YouTube: Watch, Listen, Stream",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular",
        "AppleTV4-AppleTV4",
        "AppleTV62-AppleTV5",
        "AppleTV4KSecondGen-AppleTV4KSecondGen",
        "AppleTV4KThirdGen-AppleTV4KThirdGen"
      ],
      "ipad": true,
      "advisories": [
        "Infrequent/Mild Medical/Treatment Information",
        "Infrequent/Mild Realistic Violence",
        "Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
        "Infrequent/Mild Profanity or Crude Humor",
        "Infrequent/Mild Sexual Content and Nudity",
        "Infrequent/Mild Cartoon or Fantasy Violence",
        "Infrequent/Mild Mature/Suggestive Themes",
        "Infrequent/Mild Horror/Fear Themes",
        "Infrequent/Mild Simulated Gambling"
      ],
      "screenshotUrls": [
        "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/25/84/db/2584db5e-1b7d-197f-1a33-13602daf5d95/f1192f1f-430d-469a-b032-cdf77b8b04c7_iOS-5.5-in_1.jpg/392x696bb.jpg",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/54/0a/8d/540a8daf-4cc2-397a-e1b1-90b859947b44/868afd15-b2e4-4923-b0f8-c5599327a3d7_iOS-5.5-in_2.jpg/392x696bb.jpg",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/a1/e3/e8/a1e3e81c-94e1-9bc2-c5f6-f5efe2814230/2930dbc3-4228-403b-b46d-e0066516ab6a_iOS-5.5-in_3.jpg/392x696bb.jpg",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/9e/cd/9b/9ecd9b66-ade4-70f8-a6f6-7b1ee3cc7b41/45519fca-0e0b-466e-9ed6-9a43232a0bf8_iOS-5.5-in_4.jpg/392x696bb.jpg",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple126/v4/90/e2/4b/90e24bd5-b81b-558a-3b1a-e5acf46a7669/bace9abd-71f3-4700-8adf-cedcba275a67_iOS-5.5-in_5.jpg/392x696bb.jpg"
      ],
      "i18n_lang": [
        "de",
        "hi",
        "hr",
        "nl-be",
        "hu",
        "uk",
        "en-au",
        "ar-lb",
        "id",
        "de-ch",
        "ms",
        "el",
        "en",
        "es-cl",
        "fr-ca",
        "es",
        "zh",
        "es-co",
        "es-pe",
        "en-nz",
        "ar",
        "pt-pt",
        "vi",
        "fr-be",
        "ar-eg",
        "ja",
        "ro",
        "en-gb",
        "nl",
        "en-ca",
        "ru",
        "fi",
        "ar-ae",
        "fr",
        "de-at",
        "fr-ch",
        "sv",
        "ko",
        "zh-tw",
        "pt-br",
        "es-mx",
        "cs",
        "es-ar",
        "th",
        "de-lu",
        "pl",
        "he",
        "da",
        "tr"
      ],
      "sellerName": "Google LLC",
      "supportUrl": "http://support.google.com/youtube",
      "description": "Get the official YouTube app on iPhones and iPads. See what the world is watching -- from the hottest music videos to what’s popular in gaming, fashion, beauty, news, learning and more. Subscribe to channels you love, create content of your own, share with friends, and watch on any device.\n\nWatch and subscribe\n● Browse personal recommendations on Home\n● See the latest from your favorite channels in Subscriptions\n● Look up videos you’ve watched, liked, and saved for later in Library\n\nExplore different topics, what’s popular, and on the rise (available in select countries)\n● Stay up to date on what’s popular in music, gaming, beauty, news, learning and more\n● See what’s trending on YouTube and around the world on Explore\n● Learn about the coolest Creators, Gamers, and Artists on the Rise (available in select countries)\n\nConnect with the YouTube community\n● Keep up with your favorites creators with Posts, Stories, Premieres, and Live streams\n● Join the conversation with comments and interact with creators and other community members\n\nCreate content from your mobile device\n● Create or upload your own videos directly in the app\n● Engage with your audience in real time with live streaming right from the app\n\nFind the experience that fits you and your family (available in select countries)\n● Every family has their own approach to online video. Learn about your options: the YouTube Kids app or a new parent supervised experience on YouTube at youtube.com/myfamily\n\nSupport creators you love with channel memberships (available in select countries)\n● Join channels that offer paid monthly memberships and support their work\n● Get access to exclusive perks from the channel & become part of their members community\n● Stand out in comments and live chats with a loyalty badge next to your username\n\nUpgrade to YouTube Premium (available in select countries)\n● Watch videos uninterrupted by ads, while using other apps, or when the screen is locked\n● Save videos for when you really need them – like when you’re on a plane or commuting\n● Get access to YouTube Music Premium as part of your benefits\n\nNote: If you subscribe via Apple, payment will be charged to App Store Account at confirmation of purchase. Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period. Account will be charged for renewal within 24 hours prior to the end of the current period at the rate of the selected plan. Subscriptions and auto-renewal may be managed by going to Account Settings after purchase.\n\nYouTube paid service terms: https://www.youtube.com/t/terms_paidservice.\nPrivacy policy: https://www.google.com/policies/privacy",
      "primaryGenreId": 6008,
      "artistViewUrl": "https://apps.apple.com/us/developer/google-llc/id281956209?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Photo & Video",
        "Entertainment"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "14.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.google.ios.youtube",
      "artworkUrl512": "https://is4-ssl.mzstatic.com/image/thumb/Purple116/v4/84/7c/12/847c12a7-f5ce-b5fb-72cb-a53db6ab1f3c/logo_youtube_color-1x_U007emarketing-0-6-0-85-220.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://www.google.com/policies/privacy",
      "primaryGenreName": "Photo & Video",
      "appletvScreenshotUrls": [
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource125/v4/55/d7/8c/55d78c33-4016-8335-cdc8-3ec305540a78/91f70ef3-e074-4aad-b659-7f5a643d1e6a_YouTube_Home_April2021.png/720x405bb.png",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource115/v4/54/fb/9e/54fb9e17-d315-9f37-430a-b8ab7035a5c9/ca49df19-09c0-4ed2-bfc1-91a63801fd54_YouTube_Music_April2021.png/720x405bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource115/v4/c5/19/63/c519632d-9140-3273-4654-4f19e048f725/121cea11-5559-4190-8058-59a6f648b557_YouTube_Watch_April2021.png/720x405bb.png"
      ],
      "formattedPrice": "Free",
      "averageUserRating": 4.67936,
      "artistName": "Google LLC",
      "r1": 990253,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/df/2a/89/df2a89cc-3665-5490-d6de-c5609b4cc955/AppIcon-0-1x_U007emarketing-0-6-0-0-0-85-220-0.png/100x100bb.jpg",
      "r2": 190893,
      "r3": 559124,
      "userRatingCountForCurrentVersion": 25570025,
      "r4": 1878279,
      "r5": 22382226,
      "averageUserRatingForCurrentVersion": 4.78468,
      "ipadScreenshotUrls": [
        "https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/b5/45/4c/b5454cdc-0360-6681-7171-f44b12eeea7a/fa3baae4-ebb5-4ad0-8b73-2ec8b5862bd7_iOS_-_iPad_-_THOL_-_S01_-_en-US.png/552x414bb.png",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple123/v4/3d/4f/a1/3d4fa1ce-e9b5-0360-be6d-4872116c3cff/d6b88c2d-0b02-43c6-8b20-8f58548a3872_iOS_-_iPad_-_THOL_-_S02_-_en-US.png/552x414bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/3f/a1/9a/3fa19a90-7510-5199-f5d5-eee2ea6c2279/78977c17-7361-4016-adfa-b22557323e26_iOS_-_iPad_-_THOL_-_S03_-_en-US.png/552x414bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple123/v4/e6/75/64/e6756480-2096-9570-a2be-cf34188b70b7/55797474-43d9-4557-bc58-57b56763adf9_iOS_-_iPad_-_THOL_-_S04_-_en-US.png/552x414bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple123/v4/da/1e/3e/da1e3e56-2d68-fff4-8a89-4cc8707fcb29/2c038bb9-2ce9-4043-ba33-ef5af6728329_iOS_-_iPad_-_THOL_-_S05_-_en-US.png/552x414bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/45/75/36/457536e1-3e64-0cf8-e6af-bc97f1f40598/35fd2976-546c-4d70-bd4a-4d1ca1bbacb7_iOS_-_iPad_-_THOL_-_S06_-_en-US.png/552x414bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple123/v4/6d/7a/b7/6d7ab79a-a5e4-e659-0d89-501a344a1058/33504fda-9054-4a39-83d8-90ecb50ef4e2_iOS_-_iPad_-_THOL_-_S07_-_en-US.png/552x414bb.png"
      ],
      "artistId": 324684583,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "We’re always making changes and improvements to Spotify. To make sure you don’t miss a thing, just keep your Updates turned on.",
      "price": 0,
      "trackContentRating": "12+",
      "userRatingCount": 25570025,
      "contentAdvisoryRating": "12+",
      "trackId": 324684580,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "AF",
        "AM",
        "AR",
        "AZ",
        "BN",
        "BG",
        "CA",
        "HR",
        "CS",
        "DA",
        "NL",
        "EN",
        "ET",
        "FI",
        "FR",
        "DE",
        "EL",
        "GU",
        "HE",
        "HI",
        "HU",
        "IS",
        "ID",
        "IT",
        "JA",
        "KN",
        "KO",
        "LV",
        "LT",
        "MS",
        "ML",
        "MR",
        "NE",
        "NB",
        "OR",
        "FA",
        "PL",
        "PT",
        "PA",
        "RO",
        "RU",
        "SR",
        "ZH",
        "SK",
        "SL",
        "ES",
        "SW",
        "SV",
        "TA",
        "TE",
        "TH",
        "ZH",
        "TR",
        "UK",
        "UR",
        "VI",
        "ZU"
      ],
      "genreIds": [
        "6011",
        "6016"
      ],
      "iphone": true,
      "version": "8.8.18",
      "fileSizeBytes": 163856384,
      "artworkUrl60": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/df/2a/89/df2a89cc-3665-5490-d6de-c5609b4cc955/AppIcon-0-1x_U007emarketing-0-6-0-0-0-85-220-0.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 163856384,
      "trackViewUrl": "https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580?uo=4&at=10l9yE",
      "subtitle": "Discover the latest songs",
      "trackCensoredName": "Spotify - Music and Podcasts",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "Watch4-Watch4",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular",
        "AppleTV4-AppleTV4",
        "AppleTV62-AppleTV5",
        "Watch4-Watch4",
        "AppleTV4KSecondGen-AppleTV4KSecondGen",
        "AppleTV4KThirdGen-AppleTV4KThirdGen"
      ],
      "ipad": true,
      "advisories": [
        "Infrequent/Mild Sexual Content and Nudity",
        "Infrequent/Mild Mature/Suggestive Themes",
        "Infrequent/Mild Profanity or Crude Humor",
        "Infrequent/Mild Alcohol, Tobacco, or Drug Use or References"
      ],
      "screenshotUrls": [
        "https://is5-ssl.mzstatic.com/image/thumb/Purple123/v4/4f/1d/62/4f1d6234-5e94-24ed-dec5-29fc2450574b/ee74beb1-ba3a-46c3-907f-388c0702f9a4_iOS_-_5.5_-_THOL_-_S01_-_en-US.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple113/v4/5f/59/4e/5f594ecb-b342-fea4-caab-0487ee238398/ee943dc5-0dbd-4cac-be11-b7b04ca90e5b_iOS_-_5.5_-_THOL_-_S02_-_en-US.png/392x696bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple113/v4/92/2c/fd/922cfd3d-31f3-9bce-b9fc-e49deef1988e/cdea7073-df95-45cf-8188-85762656fde7_iOS_-_5.5_-_THOL_-_S03_-_en-US.png/392x696bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/62/bb/9f/62bb9f82-defd-3183-ffea-d2cd391c1c84/7f2953e3-a835-483b-98a1-a562708cf652_iOS_-_5.5_-_THOL_-_S04_-_en-US.png/392x696bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple123/v4/39/29/ed/3929ed93-a735-4cd2-5ab0-4f2d39211b4a/19350757-6839-4788-9f8b-a3b8f882dc85_iOS_-_5.5_-_THOL_-_S05_-_en-US.png/392x696bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple113/v4/f8/ab/e0/f8abe007-e77e-730a-e6e5-1737f8932e15/e91b410b-f564-48f4-92d2-6e07cc15bdee_iOS_-_5.5_-_THOL_-_S06_-_en-US.png/392x696bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/5d/87/b8/5d87b804-b55e-13d8-9ccb-138680c568c3/d3dd1f71-eec3-45bd-9200-cd443a7af33f_iOS_-_5.5_-_THOL_-_S07_-_en-US.png/392x696bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple113/v4/25/5f/66/255f662b-d19b-c6b5-f734-e2bd7d16a285/487e6371-6602-4871-af8b-7b494412a960_iOS_-_5.5_-_THOL_-_S08_-_en-US.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple113/v4/22/d3/6c/22d36cb8-2355-2961-8573-8c1c4383d1f8/50d34568-c2c3-4a50-8ae8-5f46694b4ac5_iOS_-_5.5_-_THOL_-_S09_-_en-US.png/392x696bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/e9/57/4a/e9574ac6-04b4-0da6-f94f-89c85891e993/34e233ef-8d3b-4d3e-8123-fcd9bf6d5344_iOS_-_5.5_-_THOL_-_S10_-_en-US.png/392x696bb.png"
      ],
      "i18n_lang": [
        "de",
        "en-ca",
        "fi",
        "hr",
        "ar-ae",
        "fr",
        "nl-be",
        "hu",
        "de-at",
        "uk",
        "fr-ch",
        "sk",
        "en-au",
        "ar-lb",
        "id",
        "de-ch",
        "sv",
        "ko",
        "zh-tw",
        "pt-br",
        "ms",
        "el",
        "en",
        "it",
        "es-cl",
        "fr-ca",
        "es",
        "es-mx",
        "es-co",
        "cs",
        "es-pe",
        "en-nz",
        "ar",
        "pt-pt",
        "vi",
        "es-ar",
        "th",
        "fr-be",
        "ar-eg",
        "ja",
        "it-ch",
        "de-lu",
        "pl",
        "ro",
        "da",
        "en-gb",
        "nl",
        "tr"
      ],
      "sellerName": "Spotify",
      "supportUrl": "https://support.spotify.com/",
      "description": "With the Spotify music and podcast app, you can play millions of songs, albums and original podcasts for free. Stream music and podcasts, discover albums, playlists or even single songs for free on your mobile or tablet. Subscribe to Spotify Premium to download and listen offline wherever you are.\n\nWHY SPOTIFY FOR MUSIC AND PODCASTS?\n• Discover new music, albums, playlists and original podcasts.\n• Search for your favorite song or artist by typing a lyric\n• Enjoy amazing sound quality on music and podcasts across all devices.\n• Create and share your own music playlists to suit your mood or discover other playlists you might like.\n• Listen to daily music mixes made just for you.\n• Explore top songs from different genres, countries or decades.\n• Sing along to each song with our lyrics feature.\n• Play music from your favorite Netflix shows\n• Subscribe to your favourite podcasts so that you never miss an episode, then curate your very own podcast library.\n• Bookmark individual podcasts into Playlists\n• Listen to music and podcasts on your mobile, tablet, desktop, PlayStation, Chromecast, TV or wearable device.\n\nListen to popular and exclusive podcasts like;\n• The Joe Rogan Experience\n• Modern Wisdom\n• 2 Bears, 1 Cave with Tom Segura and Bert Kreischer\n• Call Her Daddy and Crime Junkie\n\nSearch, discover and play music and podcasts from all over the world for free, anywhere, anytime or create your own music playlists with the latest songs to suit your mood.\n\nListen and discover the latest music from artists like;\n• Bad Bunny\n• Billie Eilish\n• Renzo Pianciola\n• The Temper Trap\n• Harry Styles\n\nListen to your favorite music artists all day every day via the Popular Radio playlist feature. Here are just some of the artists we’ve already curated;\n• Taylor Swift\n• Drake\n• Eminem\n• Coldplay\n• Paolo Nutini\n• Fleetwood Mac\n\nListen to over 40 category genres - New Releases, Charts, Live Events, Made for You, At Home, Only You, Summer, Pop, Workout, Hip-Hop, Mood, Party, Pride, Dance/Electronic, Alternative, Indie, Equal, Wellness, Rock, Frequency, R&B, Disney,, Throwback, Radar, Chill, Sleep, In the car, Kids & Family, Caribbean, Classical, Romance, Jazz, Instrumental, Afro, Christian and Gospel and Country.\n\nWHY GO PREMIUM?\n• Listen to albums, playlists and podcasts without ad breaks.\n• Download and listen to music and podcasts offline, wherever you are.\n• Jump back in and listen to your top songs with on-demand playback.\n• Choose from 4 subscription options – Individual, Duo, Family, Student. There’s no commitment and you can cancel any time\n\nLOVE SPOTIFY?\nLike us on Facebook: http://www.facebook.com/spotify\nFollow us on Twitter: http://twitter.com/spotify\n\nPlease note: This app features Nielsen’s audience measurement software which will allow you to contribute to market research, such as Nielsen’s Audio Measurement. If you don't want to participate, you can opt-out within the app settings. To learn more about our digital audience measurement products and your choices in regard to them, please visit http://www.nielsen.com/digitalprivacy for more information.",
      "primaryGenreId": 6011,
      "artistViewUrl": "https://apps.apple.com/us/developer/spotify/id324684583?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Music",
        "Entertainment"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "14.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.spotify.client",
      "artworkUrl512": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/df/2a/89/df2a89cc-3665-5490-d6de-c5609b4cc955/AppIcon-0-1x_U007emarketing-0-6-0-0-0-85-220-0.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://www.spotify.com/legal/privacy-policy/",
      "primaryGenreName": "Music",
      "appletvScreenshotUrls": [
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/4e/e7/24/4ee724d2-e125-dad9-f857-1c8e5d3d2a04/08236728-6c5e-4125-9dcb-ac507ec2c50c_Apple_TV_1920x1080_Products_hero_carousel.png/720x405bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/f8/d7/7b/f8d77bd5-54ce-e61a-97cd-d54a1d22c3fa/c54a5a53-f24f-462b-abf0-6aae88ccdff2_Home.png/720x405bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/c5/52/37/c552377d-d085-1b0f-2950-2033665da962/b59e3417-59ec-4f86-8ea4-38365339e2ea_Library.png/720x405bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/38/6a/1d/386a1de4-6c69-1f36-b4ac-a36aae487bcb/2abf2bcc-f4f6-47c0-b527-229555588bbe_NPV.png/720x405bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/7d/f1/c6/7df1c680-90d8-4249-bbdf-20ab5b2eafcb/b1c5089b-87c9-47f4-8f36-19e300ff9c3c_Search.png/720x405bb.png"
      ],
      "formattedPrice": "Free",
      "averageUserRating": 4.78468,
      "artistName": "Spotify",
      "r1": 480259,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/a8/4f/59/a84f5986-94a9-d4c8-c8d1-eb905b8be6b8/Prod-0-1x_U007emarketing-0-7-0-85-220.png/100x100bb.jpg",
      "r2": 214564,
      "r3": 598862,
      "userRatingCountForCurrentVersion": 24419276,
      "r4": 1767195,
      "r5": 21107796,
      "averageUserRatingForCurrentVersion": 4.73681,
      "ipadScreenshotUrls": [
      ],
      "artistId": 389801255,
      "releaseNotes": "Bug fixes and performance improvements.",
      "price": 0,
      "trackContentRating": "12+",
      "userRatingCount": 24419276,
      "contentAdvisoryRating": "12+",
      "trackId": 389801252,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "HR",
        "CS",
        "DA",
        "NL",
        "EN",
        "FI",
        "FR",
        "DE",
        "EL",
        "HI",
        "HU",
        "ID",
        "IT",
        "JA",
        "KO",
        "MS",
        "NB",
        "PL",
        "PT",
        "RO",
        "RU",
        "ZH",
        "SK",
        "ES",
        "SV",
        "TL",
        "TH",
        "ZH",
        "TR",
        "UK",
        "VI"
      ],
      "genreIds": [
        "6008",
        "6005"
      ],
      "iphone": true,
      "version": "274.0",
      "fileSizeBytes": 263757824,
      "artworkUrl60": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/a8/4f/59/a84f5986-94a9-d4c8-c8d1-eb905b8be6b8/Prod-0-1x_U007emarketing-0-7-0-85-220.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 263757824,
      "trackViewUrl": "https://apps.apple.com/us/app/instagram/id389801252?uo=4&at=10l9yE",
      "trackCensoredName": "Instagram",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
        "Infrequent/Mild Mature/Suggestive Themes",
        "Infrequent/Mild Profanity or Crude Humor",
        "Infrequent/Mild Sexual Content and Nudity"
      ],
      "screenshotUrls": [
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource115/v4/5c/e3/8a/5ce38a57-9d58-e935-5ca3-dd2ae4392312/eaa50ef1-1f48-4223-85ca-c15bb17fef37_home.5.5.png/392x696bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource115/v4/6d/5e/65/6d5e6535-d0ab-47ed-ac4f-5469760b5e7a/782bdbc7-e9f5-4ee9-846e-447f7717b884_thread.5.5.png/392x696bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource125/v4/75/cf/30/75cf3067-400c-f90d-61d5-56513ac46273/6928e47a-235a-452e-ad38-d0c125724de5_explore.5.5.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource125/v4/39/15/b7/3915b7f9-85a6-040e-228b-2030ee5c855e/0f1f3dc0-c424-404b-8451-a08268469e13_profile.5.5.png/392x696bb.png",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource115/v4/d2/d1/35/d2d13557-3fe7-70ca-176e-a6fa9d688ba5/785d8504-61c2-4b6c-9dfc-09f9b4287b56_camera.5.5.png/392x696bb.png"
      ],
      "i18n_lang": [
        "de",
        "hi",
        "en-ca",
        "ru",
        "fi",
        "fr",
        "nl-be",
        "de-at",
        "fr-ch",
        "en-au",
        "id",
        "de-ch",
        "sv",
        "ko",
        "zh-tw",
        "pt-br",
        "ms",
        "el",
        "en",
        "it",
        "es-cl",
        "fr-ca",
        "es",
        "zh",
        "es-mx",
        "es-co",
        "es-pe",
        "en-nz",
        "pt-pt",
        "vi",
        "es-ar",
        "th",
        "fr-be",
        "ja",
        "it-ch",
        "de-lu",
        "da",
        "en-gb",
        "nl",
        "tr"
      ],
      "sellerName": "Instagram, Inc.",
      "supportUrl": "http://help.instagram.com/",
      "description": "Bringing you closer to the people and things you love. — Instagram from Meta\n\nConnect with friends, share what you’re up to, or see what's new from others all over the world. Explore our community where you can feel free to be yourself and share everything from your daily moments to life's highlights.\n\nExpress Yourself and Connect With Friends\n\n* Add photos and videos to your story that disappear after 24 hours, and bring them to life with fun creative tools.\n* Message your friends with Messenger. Share and connect over what you see on Feed and Stories.\n* Create and discover short, entertaining videos on Instagram with Reels.\n* Post photos and videos to your feed that you want to show on your profile.\n\nLearn More About Your Interests\n\n* Watch videos from your favorite Creators and discover new content through Instagram Video and Reels.\n* Get inspired by photos and videos from new accounts in Explore.\n* Discover brands and small businesses, and shop products that are relevant to your personal style.\nSome Instagram features may not be available in your country or region.\n\nTerms of Service - https://help.instagram.com/581066165581870",
      "primaryGenreId": 6008,
      "artistViewUrl": "https://apps.apple.com/us/developer/instagram-inc/id389801255?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Photo & Video",
        "Social Networking"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "13.4",
      "isGameCenterEnabled": false,
      "bundleId": "com.burbn.instagram",
      "artworkUrl512": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/a8/4f/59/a84f5986-94a9-d4c8-c8d1-eb905b8be6b8/Prod-0-1x_U007emarketing-0-7-0-85-220.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://instagram.com/legal/privacy/",
      "primaryGenreName": "Photo & Video",
      "formattedPrice": "Free",
      "averageUserRating": 4.73681,
      "artistName": "Instagram, Inc.",
      "r1": 701992,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/ef/bd/f2/efbdf245-b694-05ea-6f57-75d0e27270dd/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/100x100bb.jpg",
      "r2": 257063,
      "r3": 556842,
      "userRatingCountForCurrentVersion": 22971666,
      "r4": 1431368,
      "r5": 20057168,
      "averageUserRatingForCurrentVersion": 4.73909,
      "ipadScreenshotUrls": [
      ],
      "artistId": 387327025,
      "releaseNotes": "【好剧热综】《秋蝉》、《极限挑战6》精彩看不停~\n【收藏优化】\"我的收藏\"页面增加已赞视频,查看更方便。\n【互动福利】看《青春有你2》参与互动,为喜欢的训练生获得更多曝光福利!",
      "price": 0,
      "trackContentRating": "17+",
      "userRatingCount": 22971666,
      "contentAdvisoryRating": "17+",
      "trackId": 393765873,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "EN",
        "ZH",
        "ZH"
      ],
      "genreIds": [
        "6016",
        "6002"
      ],
      "iphone": true,
      "version": "14.3.1",
      "fileSizeBytes": "346353664",
      "artworkUrl60": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/ef/bd/f2/efbdf245-b694-05ea-6f57-75d0e27270dd/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 346353664,
      "trackViewUrl": "https://apps.apple.com/cn/app/%E7%88%B1%E5%A5%87%E8%89%BA-%E5%BD%92%E8%B7%AF-%E5%85%A8%E7%BD%91%E9%A6%96%E6%92%AD/id393765873?uo=4&at=10l9yE",
      "subtitle": "狂飙、五哈3、回响热播",
      "trackCensoredName": "爱奇艺-青春有你2热播",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "偶尔/轻微的现实暴力",
        "频繁/强烈的模拟赌博",
        "偶尔/轻微的亵渎或低俗幽默",
        "偶尔/轻微的医药或医疗信息",
        "偶尔/轻微的卡通或幻想暴力",
        "频繁/强烈的成人或性暗示题材",
        "偶尔/轻微的烟酒或毒品使用或相关内容",
        "偶尔/轻微的惊悚或恐怖题材",
        "偶尔/轻微的色情内容或裸露"
      ],
      "screenshotUrls": [
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/27/7e/84/277e847f-2a37-0d8e-c1bb-99369d657a9a/9e061398-4b3c-4c01-8f0a-49239106d9bb_1-1-1242_U2716_Ufe0f2208.jpg/1242x2208.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/1a/2d/fc/1a2dfc94-17ad-439e-0c00-d9a6ccd69dc4/bd982701-79be-4ab9-a940-ef9516881ede_2-1.jpg/1242x2208.png",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/96/1d/7a/961d7a82-1970-2931-c7b9-1bb53efe767c/125e036d-5687-41e7-b29e-4ce695b26b4b_3-1.jpg/1242x2208.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/77/cf/b2/77cfb285-e09c-2d96-9aa7-1c837c8d2a81/120ba9e1-60cc-485c-bb81-e76311b8df81_4-1.jpg/1242x2208.png",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/92/7f/54/927f54f5-4cf1-a953-9496-dcf465bc4577/34e2f1e6-54a3-4f6d-9eee-a8dab98f0589_5-1.jpg/1242x2208.png",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/74/ae/c9/74aec98e-f609-2e77-81b0-6389217cfa01/d850c3b3-d1b9-4a90-809e-e7cb9c676b2a_6-1.jpg/1242x2208.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/c5/e8/3f/c5e83f80-a711-0abb-e09b-a131067f815c/2386f056-38e6-4014-9aa3-c4c0df310601_7-1.jpg/1242x2208.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/22/a2/9b/22a29ba4-7c32-922b-62b4-f6fd6c9a0224/f8b55375-b956-42d0-bfa6-0882eeb3e151_8-1.jpg/1242x2208.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/5c/40/ff/5c40ff34-b94e-7ed6-c1ab-0d02309997b5/75433a41-de26-4610-9868-122e430bd834_9-1.jpg/1242x2208.png",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/ff/49/8d/ff498d87-f85a-7723-bf94-1088c8b8288e/1fc377ef-47cd-4788-81c5-abc82c20a872_10-2.jpg/1242x2208.png"
      ],
      "i18n_lang": [
        "zh"
      ],
      "sellerName": "Beijing Qiyi Century Science & Technology Co.,LTD.",
      "supportUrl": "http://www.iqiyi.com/mobile/index.html",
      "description": "【精彩视频,绝不剧荒】\n《青春有你2》:导师合作舞台来袭!蔡徐坤、朱正廷惊喜会面,师兄师妹将同台演绎《It's ok》\n《极限挑战6》:雷佳音、贾乃亮、邓伦极限“新三傻”诞生,即兴说唱表演“淡黄的长裙”\n《天醒之路》:陈飞宇、熊梓淇、程潇三人追梦武侠,一路追风摘星、热血进阶\n《秋蝉》:任嘉伦、李曼代号“秋蝉”上演热血谍战,在线狙击少女心\n《古董局中局2》:珍宝出世,搅动江湖。夏雨、魏晨鉴宝小分队集结\n《我是唱作人2》:赛程迎来第二次淘汰,下位区苏运莹与中位区刘思鉴进行电音之战\n《彼岸花》:林允、宋威龙旷世情缘,上演刻骨铭心的前世今生双重虐恋\n《爱情的开关》:熊梓淇、赖雨濛青梅竹马却因变故分离,相逢后又误会重重\n《喜欢你我也是2》:张绍刚、沙溢、李汶翰等人组成磕糖家族,观察四女三男的甜蜜日常\n《王牌对王牌5》:王牌家族互道心声纷纷泪目,历经五载、初心不改\n《我要这样生活》:小鬼、范丞丞遭遇“魔鬼”正骨,爆笑出圈\n《欢乐喜剧人6》:总决赛来袭,烧饼、曹鹤阳重现德云社学艺趣事\n《猎狐》:王凯、王鸥跨境追逃,粉碎经济罪魁们的商业帝国\n《鬓边不是海棠红》:黄晓明、尹正梨园结缘,还原民国动荡岁月\n《成化十四年》:官鸿、傅孟柏、刘耀元认真探案,在破朔迷离的危险中寻找真相\n《民国奇探》:胡一天、张云龙爆笑探案,在乱世中坚守正义,维系社会安定\n\n【独播热播 给你想要】\n热播电影新上线:灭绝、救火奶爸、扶桑有狐、无双花木兰、我们永不言弃、惊天动地、无名战士、狼鹰、狐踪谍影、龙潭巨兽、变异狂蟒2\n热门综艺看不停:笑起来真好看、天赐的声音、偶像练习生、歌手·当打之年、向往的生活2、请回答王牌2020、经典传奇、奔跑吧2\n全新剧集实时看:我是余欢水、报告王爷,王妃是只猫、凶案现场、爱情公寓5、唐砖、锦衣之下、庆余年、如果岁月可回头、延禧攻略\n动漫新番随心换:航海王、香肠派对、名侦探柯南 普通话、猪屁登正能量、爆笑虫子全集、迷你小洞、博人传 火影忍者新时代、刺客伍六七\n海外新剧新推荐:良医、后裔、小谢尔顿1、海豹六队、超能力1、明日传奇1、翡翠酒店、娃娃屋、请回答1988、太阳的后裔、来自星星的你\n\n【自动续费黄金会员】\n-- 黃金会员权益:内容特权【黄金VIP内容抢先看】;播放特权:【广告特权,1080p,杜比音效】\n-- 订阅周期:1个月(黄金会员连续包月产品),3个月(黄金会员连续包季产品),12个月(黄金会员连续包年产品)。\n-- 订阅价格:以iAP申请信息为准,例如连续包月产品为每月19元;连续包年产品每年228元。\n-- 付款:用户确认购买并付款后记入iTunes账户。\n-- 取消续订:如需取消续订,请在当前订阅周期到期前24小时以前,手动在iTunes/Apple ID设置管理中关闭自动续订功能。\n-- 续订:苹果iTunes账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。\n-- 首月免费试用:免费试用期内再次续订或取消续订,不会向用户收回免费试用权益,用户可以继续试用直至试用周期结束;\n-- 隐私政策:http://www.iqiyi.com/common/privateh5.html\n-- 用户协议:http://www.iqiyi.com/common/loginProtocol.html\n-- 自动续费会员服务协议:http://vip.iqiyi.com/autorenewagreement.html\n\n【自动续费Fun会员】\n-- Fun会员权益:内容特权【动画抢先看,漫画免费库,漫画礼包】;播放特权:【广告特权,1080p,杜比音效】;身份特权:【专享头像框、身份标识】\n-- 订阅周期:1个月(Fun会员连续包月产品),3个月(Fun会员连续包季产品),12个月(Fun会员连续包年产品)。\n-- 订阅价格:以iAP申请信息为准,例如连续包月产品为每月15元;连续包季产品每年40元;连续包年产品每年158元。\n-- 付款:用户确认购买并付款后记入iTunes账户。\n-- 取消续订:如需取消续订,请在当前订阅周期到期前24小时以前,手动在iTunes/Apple ID设置管理中关闭自动续订功能。\n-- 续订:苹果iTunes账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。\n-- 首月免费试用:免费试用期内再次续订或取消续订,不会向用户收回免费试用权益,用户可以继续试用直至试用周期结束;\n-- 隐私政策:http://www.iqiyi.com/common/privateh5.html\n-- 用户协议:http://www.iqiyi.com/common/loginProtocol.html\n-- 自动续费会员服务协议:http://vip.iqiyi.com/autorenewagreement.html\n\n【自动续费体育会员套餐说明】\n-体育会员权益:大众会员每月2场付费直播(非高尔夫),专业会员所选套餐全部比赛直播,并享广告特权、1080P、会员演播室、单点付费五折起\n-订阅周期:1个月(连续包月产品)。\n-订阅价格:大众会员连续包月6元/月,西甲会员连续包月19元/月,网球会员连续包月19元/月,高尔夫会员连续包月63元/月\n-付款:用户确认购买并付款后记入iTunes账户\n-取消续订:如需取消续订,请在当前订阅周期到期前24小时以前,手动在iTunes/Apple ID设置管理中关闭自动续订功能。\n-续订:苹果iTunes账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。\n-体育会员服务协议:https://m.iqiyi.com/m/iframe/index.html?src=%2F%2Fsports.iqiyi.com%2Fresource%2Fh5%2FvipAgreement.html\n-自动续费会员服务协议:https://m.iqiyi.com/m/iframe/index.html?src=%2F%2Fsports.iqiyi.com%2Fresource%2Fh5%2FAutomaticRenewalServiceAgreement.html\n\n【自动续费钻石会员套餐说明】\n--钻石会员权益:四端(手机、电脑、平板电脑、电视)同享VIP会员各项特权,含海量内容抢先看特权、广告特权、蓝光1080P画质特权、杜比音效特权等30多项豪华特权,及其他增值权益。\n-- 订阅周期:1个月(连续包月产品),3个月(连续包季产品),12个月(连续包年产品)。\n-- 订阅价格:连续包月产品为每月40元;连续包季产品每季118元;连续包年产品每年398元 。\n-- 付款:用户确认购买并付款后记入iTunes账户。\n-- 取消续订:如需取消续订,请在当前订阅周期到期前24小时以前,手动在iTunes/Apple ID设置管理中关闭自动续订功能。\n-- 续订:苹果iTunes账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。\n-- 隐私政策:http://www.iqiyi.com/common/privateh5.html\n-- 用户协议:http://www.iqiyi.com/common/loginProtocol.html\n-- 自动续费会员服务协议:http://vip.iqiyi.com/autorenewagreement.html\n\n【自动续费爱奇艺文学会员套餐说明】\n-- 文学会员权益:内容特权:内容特权:会员书籍免费读,追更抢先。广告特权:阅读器广告瞬间消失,开启畅读新体验。首月开通半价优惠。\n-- 订阅周期:一个月(连续包月),三个月,12个月。\n-- 订阅价格:以ipa申请的价格为准,例如连续包月每月10元。\n-- 付款:用户确认购买并付款后记入iTunes账户。\n-- 取消续订:如需取消续订,请在当前订阅周期到期前24小时以前,手动在iTunes/Apple ID设置管理中关闭自动续订功能。\n-- 续订:苹果iTunes账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。\n-- 隐私政策:http://www.iqiyi.com/common/privateh5.html\n-- 用户协议:http://www.iqiyi.com/common/loginProtocol.html\n-- 自动续费会员服务协议:http://vip.iqiyi.com/autorenewagreement.html\n\n【爱奇艺 精彩不只视频】\n爱奇艺APP是一款集视频、社交、电商、游戏、移动直播、漫画、阅读、电影票等多元生活服务于一体的移动软件。秉承悦享品质的品牌宗旨,致力于为用户带来丰富、高清、流畅的专业视频体验。并以优质的纯网内容,多元、贴心的生活服务态度,为用户打造一个人与服务相连接的全方位移动视频平台。\n用户反馈:微博关注@爱奇艺APP,微信添加好友:iqiyishipin。",
      "primaryGenreId": 6016,
      "artistViewUrl": "https://apps.apple.com/cn/developer/qiyi/id387327025?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "娱乐",
        "工具"
      ],
      "currency": "CNY",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "11.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.qiyi.iphone",
      "artworkUrl512": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/ef/bd/f2/efbdf245-b694-05ea-6f57-75d0e27270dd/AppIcon-0-0-1x_U007emarketing-0-0-0-6-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://www.iqiyi.com/common/privateh5.html",
      "primaryGenreName": "Entertainment",
      "formattedPrice": "免费",
      "averageUserRating": 4.73909,
      "artistName": "QIYI",
      "r1": 669064,
      "lang": "en",
      "app_country": "CN",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/09/dd/c5/09ddc53a-5c8d-7f70-7068-9f113ba2808e/AppIcon-1x_U007emarketing-0-4-85-220.png/100x100bb.jpg",
      "r2": 110466,
      "r3": 420769,
      "userRatingCountForCurrentVersion": 15843611,
      "r4": 1347349,
      "r5": 13626086,
      "averageUserRatingForCurrentVersion": 4.768,
      "ipadScreenshotUrls": [
      ],
      "artistId": 719972454,
      "releaseNotes": "Minor updates and performance improvements",
      "price": 0,
      "trackContentRating": "12+",
      "userRatingCount": 15843611,
      "contentAdvisoryRating": "12+",
      "trackId": 719972451,
      "hasInAppPurchases": false,
      "languageCodesISO2A": [
        "EN",
        "FR",
        "ES"
      ],
      "genreIds": [
        "6023",
        "6012"
      ],
      "iphone": true,
      "version": "5.9.0",
      "fileSizeBytes": 230811648,
      "artworkUrl60": "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/09/dd/c5/09ddc53a-5c8d-7f70-7068-9f113ba2808e/AppIcon-1x_U007emarketing-0-4-85-220.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 230811648,
      "trackViewUrl": "https://apps.apple.com/us/app/doordash-food-delivery/id719972451?uo=4&at=10l9yE",
      "subtitle": "Food & Groceries, Delivered",
      "trackCensoredName": "DoorDash - Food Delivery",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "Infrequent/Mild Alcohol, Tobacco, or Drug Use or References"
      ],
      "screenshotUrls": [
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/f3/d5/b6/f3d5b686-6b06-6f2a-6333-d27da9060779/ad91ed5f-6a84-4cf1-92d7-11d3493bbdbc_ASO_tile_1_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/a7/a1/06/a7a106ac-123a-56f0-d334-934470e33c03/914b3801-9ee1-449c-9c38-bee2eb094738_ASO_tile_2_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/ef/32/3a/ef323a6f-5595-8e31-bd2a-1468a32ebef5/78c7b8f8-9973-4976-93b3-4f5f2eb5ac68_ASO_tile_3_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/28/5a/19/285a1949-645f-ead0-9827-48c470e10f31/51440ce1-2d7b-44d8-9f6a-892662e934ae_ASO_tile_4_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/71/99/a9/7199a994-1493-2ef5-c90d-4858b5a9eede/8510144b-3dd9-4f8d-9d61-263394e9207f_ASO_tile_5_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/d0/b3/a7/d0b3a7d7-65e5-8682-9c56-4869816bb7e4/959caeae-e5f7-4e4e-813c-16aa1045dd2c_ASO_tile_6_US_ENG_Apple_Store_STA_1242x2208.png/392x696bb.png"
      ],
      "i18n_lang": [
        "de",
        "en-ca",
        "ko",
        "en",
        "fr",
        "es-cl",
        "fr-ca",
        "es",
        "es-mx",
        "es-co",
        "de-at",
        "es-pe",
        "en-nz",
        "es-ar",
        "fr-be",
        "fr-ch",
        "en-au",
        "de-lu",
        "en-gb",
        "de-ch"
      ],
      "sellerName": "DoorDash, Inc.",
      "supportUrl": "https://support.doordash.com/#/delivery",
      "description": "Delivery anywhere you are. DoorDash offers the greatest online selection of your favorite restaurants and stores facilitating delivery of freshly prepared meals, fresh groceries, alcohol, household essentials, and more directly to you. With more than 310,000 menus and 12,000+ grocery stores across 4,000+ cities in the U.S., Canada, and Australia, you’ll find the best of your neighborhood as you shop and order online. Spend more time doing the things you love — we'll take care of the rest. Plus, enjoy $0 delivery fees on food, groceries, and your favorite items for your first month. Restrictions apply: https://drd.sh/tF5uns/\n\nIT’S ALL HERE. ALL IN ONE APP\nDiscover local, on-demand delivery or pickup from thousands of restaurants, grocery stores, convenience stores, pet stores, and more. From your neighborhood sushi spot to this week's grocery list it’s all at your fingertips and ready for delivery through DoorDash to your doorstep.\n\n· Get it now: Get on-demand, same day delivery.\n· Schedule deliveries: Order in advance and get your food and shopping list when it's most convenient for you.\n· Real-Time Tracking: See when your order will arrive. From food quality to prep-times to traffic, we've factored in all the elements.\n· No Minimums: Order as little or as much as you want.\n· Easy Payment: Conveniently pay via Apple Pay, Venmo, Paypal, or credit card.\n· No-Contact Delivery: Your food will be left in a safe place and you’ll be alerted that it’s ready for you to pick up at your doorstep\n\nSIGN UP FOR MEMBER-ONLY BENEFITS WITH DASHPASS\nGet unlimited $0 delivery fees on the best of your neighborhood. Plus, DashPass members get access to exclusive items and offers, 10% off eligible orders thanks to reduced service fees, and 5% back on eligible Pickup orders. Your first 30 days on DashPass are free, then $9.99/month. Cancel anytime.\n\nNATIONAL RESTAURANT PARTNERS\nChick-fil-A, Burger King, Wendy’s, Chipotle, The Cheesecake Factory, Outback Steakhouse, Panera, Chili's, Subway, Dunkin’ Donuts, Jamba Juice, Panda Express, Moe's Southwest Grill, P.F. Chang’s, Denny’s, Buffalo Wild Wings, Papa John's, California Pizza Kitchen, Papa Murphy’s, Jack in the Box, Five Guys, Boston Market, Red Robin, TGI Friday’s, Red Lobster, Qdoba Mexican Eats, El Pollo Loco, Noodles & Company, Buca di Beppo, White Castle, SmashBurger, Schlotzsky’s\n\nGROCERY DELIVERY PARTNERS\nSafeway, Albertsons, Sprouts Farmers Market, Meijer, Hy-vee, Grocery Outlet, Winn-Dixie, Smart & Final, BJ's, Vons, Weis, ACME, Shaw's, Lowes Foods Grocery, Raley's, Fresh Thyme, Bashas' Grocery, Nob Hill, Giant Eagle, Bristol Farms Grocery, and more\n\nFIND RESTAURANTS AND STORES NEAR YOU\nWe’re growing every day and currently serving over 4,000 cities across the United States, Puerto Rico, Canada, and Australia including\nNew York City, Los Angeles, Toronto, Chicago, Houston, Brooklyn, San Diego, Las Vegas, San Francisco, Seattle, Atlanta, Queens, Vancouver, BC, Miami, San Antonio, Phoenix, Denver, Austin, Washington, DC, Dallas, Melbourne, Sydney, Montreal\n\nNotice at Collection (California Residents): https://help.doordash.com/consumers/s/privacy-policy-us#section-11\nVisit doordash.com to learn more.",
      "primaryGenreId": 6023,
      "artistViewUrl": "https://apps.apple.com/us/developer/doordash-inc/id719972454?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Food & Drink",
        "Lifestyle"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "15.0",
      "isGameCenterEnabled": false,
      "bundleId": "doordash.DoorDashConsumer",
      "artworkUrl512": "https://is2-ssl.mzstatic.com/image/thumb/Purple126/v4/09/dd/c5/09ddc53a-5c8d-7f70-7068-9f113ba2808e/AppIcon-1x_U007emarketing-0-4-85-220.png/512x512bb.jpg",
      "privacyPolicyUrl": "https://www.doordash.com/privacy/",
      "primaryGenreName": "Food & Drink",
      "formattedPrice": "Free",
      "averageUserRating": 4.768,
      "artistName": "DoorDash, Inc.",
      "r1": 285764,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/00/ed/9a/00ed9acd-f76b-eb3b-4ebe-bb037c53a9aa/AppIcon-1x_U007emarketing-0-7-0-85-220.png/100x100bb.jpg",
      "r2": 46308,
      "r3": 205558,
      "userRatingCountForCurrentVersion": 15321617,
      "r4": 941658,
      "r5": 13972013,
      "averageUserRatingForCurrentVersion": 4.86276,
      "ipadScreenshotUrls": [
        "https://is5-ssl.mzstatic.com/image/thumb/Purple112/v4/9c/92/d4/9c92d4e5-d613-e2f5-e186-b1fd2f187f6e/pr_source.png/576x768bb.png",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple112/v4/56/31/4c/56314c1a-f197-55e8-079c-1f784c635fb8/pr_source.png/576x768bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple112/v4/8d/09/d1/8d09d1de-f1b9-06b5-5002-d4ea902c68da/pr_source.png/576x768bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple122/v4/b3/d8/e0/b3d8e0ee-d0cd-ef7c-2f62-47ba5150bb8e/pr_source.png/576x768bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple112/v4/89/00/01/890001b2-0d65-318a-0701-8cca8e12839c/pr_source.png/576x768bb.png",
        "https://is5-ssl.mzstatic.com/image/thumb/Purple112/v4/25/39/6c/25396c72-bbce-b9f4-7db6-f42cc4b82f97/pr_source.png/576x768bb.png"
      ],
      "artistId": 351727431,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "We've rolled out some minor bug fixes to improve your Venmo experience. You might not even notice anything different, but trust us, your Venmo-ing will be smoother than ever before.\nKeep your eyes peeled for future updates!",
      "price": 0,
      "trackContentRating": "4+",
      "userRatingCount": 15321617,
      "contentAdvisoryRating": "4+",
      "trackId": 351727428,
      "hasInAppPurchases": false,
      "languageCodesISO2A": [
        "EN"
      ],
      "genreIds": [
        "6015",
        "6002"
      ],
      "iphone": true,
      "version": "10.13.0",
      "fileSizeBytes": 411247616,
      "artworkUrl60": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/00/ed/9a/00ed9acd-f76b-eb3b-4ebe-bb037c53a9aa/AppIcon-1x_U007emarketing-0-7-0-85-220.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 411247616,
      "trackViewUrl": "https://apps.apple.com/us/app/venmo/id351727428?uo=4&at=10l9yE",
      "subtitle": "Send Money, Pay & Earn Rewards",
      "trackCensoredName": "Venmo",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "screenshotUrls": [
        "https://is1-ssl.mzstatic.com/image/thumb/Purple122/v4/79/a5/ad/79a5adf7-618d-7725-28e8-8178fbc54187/971dc671-2417-43fe-af8e-c19b61b472a4_AppSt_V1_short_01.jpg/392x696bb.jpg",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple122/v4/81/06/b4/8106b428-8054-9f7c-9e84-5e4aad3eacb0/ee771732-6737-46cb-8ef8-9066c8532354_AppSt_V1_short_02.jpg/392x696bb.jpg",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/6c/e1/f5/6ce1f5f7-cb97-9b2e-dcb5-6b235dbe0742/b2217c2e-e339-4fd3-8926-39d11a30fccc_AppSt_V1_Short_03.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple122/v4/88/bd/36/88bd36d4-faa8-7730-02cb-6d54da7f47b3/f4ca2e1e-849c-45bb-80c2-b036ae46bdd0_Screen4_VCC_5.5.png/392x696bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple122/v4/d9/c2/b1/d9c2b1d6-ec57-3a5a-1efd-b2031b56229b/cae67a06-548b-4b97-9a65-fc60334c3fe1_Screen5_BP_5.5.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple112/v4/fb/04/c9/fb04c9f4-2325-b348-df03-568ebe862749/db3e6d2b-c17d-4b62-b6f7-30fe072b94b5_Screen6_VDC_5.5.png/392x696bb.png",
        "https://is1-ssl.mzstatic.com/image/thumb/Purple112/v4/a7/2c/04/a72c0466-32e2-7c20-4c03-0471f0ec83ff/27bdb172-ed89-4601-9e3a-d03ace5f6096_Screen7_DD_5.5.png/392x696bb.png"
      ],
      "i18n_lang": [
        "en"
      ],
      "sellerName": "The Delancey Corporation, LLC",
      "supportUrl": "https://help.venmo.com",
      "description": "Venmo is the fast, safe, social way to pay and get paid. Join over 83 million people who use the Venmo app today.\n\n\n*SEND AND RECEIVE MONEY* \nPay and get paid for anything from your share of rent to a gift. Add a note to each payment to share and connect with friends.\n\n*GET REWARDED WITH THE VENMO CREDIT CARD* \nEarn up to 3% cash back on your eligible top spend category¹ —we’ll do the math. Split card purchases with Venmo friends, and shop everywhere Visa® credit cards are accepted—online, in-store, worldwide.² \n\n*BUY CRYPTO WITH AS LITTLE AS $1*\nBuy, hold, and sell cryptocurrency right on the Venmo app. New to crypto? Learn more with in-app resources. Crypto is volatile, so it can rise and fall in value quickly. Be sure to take it at a pace you're comfortable with.³\n\n*SHOP WITH THE VENMO DEBIT CARD* \nSpend your money in Venmo everywhere Mastercard® is accepted in the U.S. — and earn cashback from some of your favorite spots. Terms apply: https://venmo.com/about/debitcard/rewards/⁴ \n\n*DO BUSINESS ON VENMO* \nCreate a business profile for your side gig, small business, or anything in between—all under your same Venmo account. \n\n*PAY IN STORES* \nUse your Venmo QR code to pay touch-free at stores like CVS. Just scan, pay, and go.\n\n*PAY IN APPS & ONLINE* \nCheck out with Venmo on some of your favorite apps, like Uber Eats, StockX, Grubhub, and Zola. \n\n*MANAGE YOUR MONEY* \nGet your Venmo money in the bank within minutes using Instant Transfer⁵. Want your paycheck up to two days earlier⁶ than your normal payday? Try Direct Deposit. \n\n\n\n¹Use of cash back is subject to the terms of the Venmo account. See Rewards Program Terms: https://www.synchronycredit.com/gecrbterms/html/RewardsTerms.htm \n²Application subject to credit approval. You must be at least 18 years old and reside in the US or its territories to apply. You must have a Venmo account in good standing, that has been open for at least 30 days prior to application.\nThe Venmo Credit Card is issued by Synchrony Bank pursuant to a license from Visa USA Inc. VISA is a registered trademark of Visa International Service Association and used under license.\n³Terms apply. Only available in the US and limited in certain states. Buying and selling cryptocurrency is subject to a number of risk and may result in significant losses. Venmo does not make any recommendation regarding buying or selling cryptocurrency. Consider seeking advice from your financial or tax adviser.\n⁴Card is issued by The Bancorp Bank pursuant to license by Mastercard International Incorporated. The Bancorp Bank; Member FDIC. Mastercard is a registered trademark, and the circles design is a trademark of Mastercard International Incorporated. \n⁵Transfer speed depends on your bank and could take up to 30 minutes. Transfers are reviewed which may result in delays or funds being frozen or removed from your Venmo account. \n⁶Early access compared to standard banking practice of posting funds at settlement and subject to your employer providing pay information to the bank prior to payday. It may take up to two pay cycles for Direct Deposit to take effect. Transactions are reviewed, which may result in delays or funds being frozen or removed from your account.",
      "primaryGenreId": 6015,
      "artistViewUrl": "https://apps.apple.com/us/developer/venmo/id351727431?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Finance",
        "Utilities"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "13.0",
      "isGameCenterEnabled": false,
      "bundleId": "net.kortina.labs.Venmo",
      "artworkUrl512": "https://is3-ssl.mzstatic.com/image/thumb/Purple116/v4/00/ed/9a/00ed9acd-f76b-eb3b-4ebe-bb037c53a9aa/AppIcon-1x_U007emarketing-0-7-0-85-220.png/512x512bb.jpg",
      "privacyPolicyUrl": "https://venmo.com/info/privacy-policy",
      "primaryGenreName": "Finance",
      "formattedPrice": "Free",
      "averageUserRating": 4.86276,
      "artistName": "Venmo",
      "r1": 152441,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/ed/52/33/ed523336-2051-b856-ffa6-ac44aa2efd3f/AppIcon_TikTok-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/100x100bb.jpg",
      "r2": 105877,
      "r3": 154761,
      "userRatingCountForCurrentVersion": 14367416,
      "r4": 390722,
      "r5": 13056384,
      "averageUserRatingForCurrentVersion": 4.75664,
      "ipadScreenshotUrls": [
        "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/fc/a6/d0/fca6d044-158a-ba4f-c32c-2a1af00668db/7faa1788-64b2-4ba1-9e2d-030c041dc2e4_img12_92_1_en-US.jpg/576x768bb.jpg",
        "https://is4-ssl.mzstatic.com/image/thumb/Purple126/v4/d5/fc/34/d5fc34b0-d057-4a81-8cf6-af5f4a383912/0fa6539a-70c6-4818-baf4-ce865c09ccbe_img12_92_2_en-US.jpg/576x768bb.jpg",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/1a/17/c4/1a17c472-cdca-a79f-b8cf-8cb1bbc7aa5b/a981e71f-921d-436f-9f1c-9730e456c524_img12_92_3_en-US.jpg/576x768bb.jpg"
      ],
      "artistId": 1322881000,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "Explore our latest video effects!",
      "price": 0,
      "trackContentRating": "12+",
      "userRatingCount": 14367416,
      "contentAdvisoryRating": "12+",
      "trackId": 835599320,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "AR",
        "BN",
        "BG",
        "MY",
        "KM",
        "HR",
        "CS",
        "DA",
        "NL",
        "EN",
        "ET",
        "FR",
        "DE",
        "EL",
        "HI",
        "HU",
        "ID",
        "IT",
        "JA",
        "JV",
        "KK",
        "KO",
        "LV",
        "LT",
        "MS",
        "NB",
        "PL",
        "PT",
        "RO",
        "RU",
        "ZH",
        "SK",
        "ES",
        "SV",
        "TH",
        "ZH",
        "TR",
        "UK",
        "UZ",
        "VI"
      ],
      "genreIds": [
        "6016",
        "6008"
      ],
      "iphone": true,
      "version": "28.4.0",
      "fileSizeBytes": 415411200,
      "artworkUrl60": "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/ed/52/33/ed523336-2051-b856-ffa6-ac44aa2efd3f/AppIcon_TikTok-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 415411200,
      "trackViewUrl": "https://apps.apple.com/us/app/tiktok/id835599320?uo=4&at=10l9yE",
      "subtitle": "⁣Videos, Music & Live Streams",
      "trackCensoredName": "TikTok",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
        "Infrequent/Mild Cartoon or Fantasy Violence",
        "Infrequent/Mild Profanity or Crude Humor",
        "Infrequent/Mild Mature/Suggestive Themes",
        "Infrequent/Mild Sexual Content and Nudity"
      ],
      "screenshotUrls": [
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/df/43/29/df4329dc-4f12-ff53-315b-d15a696da76e/b2dce539-dcf8-469f-973d-659f3c19fec0_US_5.5_01.jpg/392x696bb.jpg",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/91/0a/04/910a043a-2d35-8c97-142e-7c919f9ae4aa/b6eaec70-cfb3-4451-95a9-d2079f73f21f_US_5.5_02.jpg/392x696bb.jpg",
        "https://is3-ssl.mzstatic.com/image/thumb/PurpleSource126/v4/1d/4a/a0/1d4aa0d4-7120-b150-d843-681dcfc0c582/6301afcb-202d-450f-aa9d-9d9c1e4678be_US_5.5_03.jpg/392x696bb.jpg",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource116/v4/33/b4/ac/33b4ac16-5909-dc13-3d2b-451cc6ecc32d/74350087-a5c1-40b5-8364-606284f6e807_US_5.5_04.jpg/392x696bb.jpg"
      ],
      "i18n_lang": [
        "de",
        "en-ca",
        "ru",
        "ar-ae",
        "fr",
        "nl-be",
        "hu",
        "de-at",
        "uk",
        "fr-ch",
        "en-au",
        "ar-lb",
        "de-ch",
        "sv",
        "pt-br",
        "en",
        "it",
        "es-cl",
        "fr-ca",
        "es",
        "es-mx",
        "es-co",
        "cs",
        "es-pe",
        "en-nz",
        "ar",
        "pt-pt",
        "es-ar",
        "fr-be",
        "ar-eg",
        "it-ch",
        "de-lu",
        "pl",
        "ro",
        "en-gb",
        "nl",
        "tr"
      ],
      "sellerName": "TIKTOK PTE. LTD.",
      "supportUrl": "http://www.tiktok.com",
      "description": "TikTok is THE destination for mobile videos. On TikTok, short-form videos are exciting, spontaneous, and genuine. Whether you’re a sports fanatic, a pet enthusiast, or just looking for a laugh, there’s something for everyone on TikTok. All you have to do is watch, engage with what you like, skip what you don’t, and you’ll find an endless stream of short videos that feel personalized just for you. From your morning coffee to your afternoon errands, TikTok has the videos that are guaranteed to make your day.\n\nWe make it easy for you to discover and create your own original videos by providing easy-to-use tools to view and capture your daily moments. Take your videos to the next level with special effects, filters, music, and more. \n\n■ Watch endless amount of videos customized specifically for you\nA personalized video feed based on what you watch, like, and share. TikTok offers you real, interesting, and fun videos that will make your day.\n \n■ Explore videos, just one scroll away\nWatch all types of videos, from Comedy, Gaming, DIY, Food, Sports, Memes, and Pets, to Oddly Satisfying, ASMR, and everything in between.\n \n■ Pause recording multiple times in one video\nPause and resume your video with just a tap. Shoot as many times as you need.\n \n■ Be entertained and inspired by a global community of creators\nMillions of creators are on TikTok showcasing their incredible skills and everyday life. Let yourself be inspired.\n\n■ Add your favorite music or sound to your videos for free\nEasily edit your videos with millions of free music clips and sounds. We curate music and sound playlists for you with the hottest tracks in every genre, including Hip Hop, Edm, Pop, Rock, Rap, and Country, and the most viral original sounds.\n\n■ Express yourself with creative effects\nUnlock tons of filters, effects, and AR objects to take your videos to the next level.\n\n■ Edit your own videos \nOur integrated editing tools allow you to easily trim, cut, merge and duplicate video clips without leaving the app.\n\n■ Obtain access to LIVE benefits to better interact with hosts!\nChoose from one-month subscription or auto-renewal subscription to enjoy special LIVE benefits (currently only available in limited regions)\n\nNote: \nIf you subscribe via Apple, payment will be charged to App Store Account at confirmation of purchase. Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period. Account will be charged for renewal within 24 hours prior to the end of the current period at the rate of the selected plan. Subscriptions and auto-renewal may be managed by going to Account Settings after purchase.\n\nMonthly price:  $5.99 USD (US, KW, OM, BH, DZ, IQ, JO, LB, LY, MA, MR, TN, YE, LA, MM, KH) / AED 20.99 / R$ 34.9 BRL / EGP 99.99 / £4.99 GBP / 20.99 QAR / 549 ₽ RUB / SR 24.99 SAR / ₺69,99 TRY\n\nTerms of Service —\nhttps://www.tiktok.com/legal/terms-of-service\n\nPrivacy Policy —\nhttps://www.tiktok.com/legal/privacy-policy\n\n* Any feedback? Contact us at https://www.tiktok.com/legal/report/feedback or tweet us @tiktok_us",
      "primaryGenreId": 6016,
      "artistViewUrl": "https://apps.apple.com/us/developer/tiktok-ltd/id1322881000?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "Entertainment",
        "Photo & Video"
      ],
      "currency": "USD",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "11.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.zhiliaoapp.musically",
      "artworkUrl512": "https://is3-ssl.mzstatic.com/image/thumb/Purple126/v4/ed/52/33/ed523336-2051-b856-ffa6-ac44aa2efd3f/AppIcon_TikTok-0-0-1x_U007emarketing-0-0-0-7-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/512x512bb.jpg",
      "privacyPolicyUrl": "https://www.tiktok.com/legal/privacy-policy",
      "primaryGenreName": "Entertainment",
      "formattedPrice": "Free",
      "averageUserRating": 4.75664,
      "artistName": "TikTok Ltd.",
      "r1": 617316,
      "lang": "en",
      "app_country": "US",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/21/cf/40/21cf407c-9205-6fa3-175c-5bff805c502e/AppIcon-1x_U007emarketing-0-10-0-85-220.png/100x100bb.jpg",
      "r2": 402628,
      "r3": 540901,
      "userRatingCountForCurrentVersion": 14196144,
      "r4": 977947,
      "r5": 10935752,
      "averageUserRatingForCurrentVersion": 4.39891,
      "ipadScreenshotUrls": [
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/6a/74/25/6a7425ee-38e7-64f5-464f-43af05aa3742/c590928d-84da-42ec-9671-803b3b104ee9_0._U7248_U672cKV.jpg/2732x2048.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/0a/7c/27/0a7c2729-ec50-9c0f-8bf8-3bb72324d890/6a910943-abe1-4bd5-b8c1-270d9eadc6d9_1._U65b0_U5730_U6807-_U65b0_U6625_U56ed_U6797.jpg/2732x2048.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/26/b2/d1/26b2d1b5-1b04-0ef9-26b1-8370d03d2c2a/cd59cbf0-f06c-48ce-84e6-3dc29a0a3d49_2._U65b0_U73a9_U6cd5-_U5927_U5409_U5927_U5229_U8dc3_U9f99_U95e8.jpg/2732x2048.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/06/d6/23/06d62320-1685-fbb3-adb2-7889172c8e97/927ecb85-d1a3-4c28-9b4b-0711674a5baa_3._U65b0_U73a9_U6cd5-_U5e74_U753b_U7948_U798f.jpg/2732x2048.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/a1/37/35/a137354f-a1bc-f065-120e-713805440e8f/83e527d4-baf8-40b8-b12b-503d3f9d9cdc_4._U65b0_U8f7d_U5177-_U7eb8_U9e22_U98de_U884c_U5668.jpg/2732x2048.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/d9/c6/45/d9c64517-53da-a6c2-e22a-6a72c6c572ed/8f7db4f9-3f64-440d-99bf-8fac708a7816_5._U65b0_U9053_U5177-_U9526_U9ca4_U7f57_U76d8.jpg/2732x2048.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/1b/51/b1/1b51b167-2f26-5f2d-f091-4ea998dfd118/1953fce0-88e4-4d4b-a0f9-bb072d33d2d8_6._U65b0_U6a21_U5f0f-_U5bb6_U56ed_U73a9_U6cd5.jpg/2732x2048.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/1f/db/64/1fdb6476-9d1d-e55c-5ba0-a43212b34307/30385f69-f8aa-4dc4-8aac-99ba22ef2b59_7._U65b0_U67aa_U68b0-M200_U72d9_U51fb_U67aa.jpg/2732x2048.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/4e/4a/16/4e4a16c8-3973-95a4-282e-890cec582fb6/a7c219ff-8768-4a3d-bc4a-17189cf52dec_8._U65b0_U914d_U4ef6-_U6218_U672f_U7784_U51c6_U955c.jpg/2732x2048.png"
      ],
      "artistId": 1586101358,
      "features": [
        "iosUniversal"
      ],
      "releaseNotes": "【版本更新内容】\n1.沙漠地图2.0全新升级: \n1)场景调整:地图北部新增绿洲区域,西北部新增废墟城区,全地图内增加了部分荒野房区和道路,新增贯穿全图的极速飞车赛道;\n2)建筑物调整:对部分建筑物的结构进行了调整;\n3)专属枪械调整:Win94狙击枪新增自带独有的2.7倍镜,并且后续只在沙漠图中刷出;\n4)专属全新载具:黄金肌肉跑车,全地图仅在豪宅刷出一辆;\n5)专属互动物件:自动售卖机,可随机获得能量饮料或者止痛药;\n2.团队竞技新玩法-军备团竞:\n1)军备团竞:4V4竞赛,初始武器相同,通过不断淘汰对手升级自己的武器,最后使用终极武器平底锅率先淘汰对手或者倒计时结束分数高的一方将获得对局胜利;\n2)专属地图-图书馆:首张室内场景地图,对称结构,左中右三条攻防路线,在图书馆的平台、门洞、书架后快速找到适合自己当前武器的点位,可以帮助特种兵们在武器弱势情况下进行反击;\n3.创意工坊新玩法-圈中圈模式:\n1)圈中圈模式:海岛地图上同时出现双信号接收圈,外层圈和内层圈之间属于安全区,玩家在外层圈之外和内层圈之内时均会掉信号值。缩圈完成后内层圈即变为下一个安全区。该模式下更考验战略战术,一定程度上降低了运气成分,对局节奏也更加紧凑刺激;\n2)专属体验调整:全地图物资刷新率相较于经典模式海岛地图提升50%,救起队友的时间缩短至4秒; \n3)创意工坊新玩法-圈中圈模式将会计入排位分;\n4.新增王牌印记和王牌之路功能:\n1)历史首次达到不朽星钻段位时,获得星钻印记,开启王牌之路功能。之后玩家首次达到荣耀皇冠段位时,获得皇冠印记;\n2)当玩家达到超级王牌段位时,获得带有历史王牌次数标识的王牌印记,每个赛季最多可以获得1个王牌印记;\n3)在个人信息、大厅左下角等处将显示当前的印记图标,并在进入组队时展示印记特效,在出生岛时可以看到队友头顶的印记特效;\n4)在个人信息里点击王牌印记图标可以查看王牌之路,展示获得印记的各个赛季的记录;\n\n【性能优化专项】\n1)优化了角色的枪械射击、使用药品、攀爬、近战武器攻击等动画的处理逻辑;\n2)优化了角色的头发骨骼动画的加载逻辑;\n3)优化了角色的部分时装的加载逻辑;\n4)优化了武器栏、药品栏、投掷物栏等主界面UI的拾取、打开及处理逻辑;\n5)优化了药品和投掷物的使用逻辑;\n6)优化了淘汰图标的出现加载逻辑;\n7)优化了打开背包时配件UI的加载逻辑;\n8)优化了淘汰盒子的的拾取逻辑;\n9)优化了建筑物中门的检测盒参数,加载逻辑;\n10)优化了载具的角色动画刷新逻辑、载具音效的加载逻辑;\n11)优化了部分机型的资源预加载判断方式;\n12)优化了其他已知的轻微性能问题,在后续更新版本中将持续挖掘并修复的各类性能问题;",
      "price": 0,
      "trackContentRating": "17+",
      "userRatingCount": 14196144,
      "contentAdvisoryRating": "17+",
      "trackId": 1321803705,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "EN",
        "ZH"
      ],
      "genreIds": [
        "6014",
        "7001",
        "7017"
      ],
      "iphone": true,
      "version": "1.21.18",
      "fileSizeBytes": "3902547968",
      "artworkUrl60": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/21/cf/40/21cf407c-9205-6fa3-175c-5bff805c502e/AppIcon-1x_U007emarketing-0-10-0-85-220.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 3902547968,
      "trackViewUrl": "https://apps.apple.com/cn/app/%E5%92%8C%E5%B9%B3%E7%B2%BE%E8%8B%B1/id1321803705?uo=4&at=10l9yE",
      "subtitle": "锦绣画团圆",
      "trackCensoredName": "和平精英",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "频繁/强烈的现实暴力"
      ],
      "screenshotUrls": [
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/8c/f7/e6/8cf7e6f5-3f17-1288-0f7b-8641ad239ea4/f6683e2f-e818-40f3-9b0b-9cb3287f3a8b_0._U7248_U672cKV.jpg/2208x1242.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/79/cf/dd/79cfdde8-699e-c727-d7cd-7b0c0b3999cc/4ad0d897-554e-4cea-9a7b-9d6e7e5bbf0f_1._U65b0_U5730_U6807-_U65b0_U6625_U56ed_U6797.jpg/2208x1242.png",
        "https://is2-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/26/39/75/263975a9-f14e-516f-d42e-6479b0e6baf6/43a94790-0b9b-43d3-b10c-373b8e106847_2._U65b0_U73a9_U6cd5-_U5927_U5409_U5927_U5229_U8dc3_U9f99_U95e8.jpg/2208x1242.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/9e/5b/64/9e5b64b7-3673-ed43-58d5-4a5c6d6c0785/dd8416ae-198d-4703-af1f-4fc403d5eb6f_3._U65b0_U73a9_U6cd5-_U5e74_U753b_U7948_U798f.jpg/2208x1242.png",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/fb/d7/9d/fbd79d99-d6d3-5f25-3c35-52baff41bfaa/9ed41e21-634c-4bf3-9673-b34c438d8757_4._U65b0_U8f7d_U5177-_U7eb8_U9e22_U98de_U884c_U5668.jpg/2208x1242.png",
        "https://is4-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/7a/a2/24/7aa22499-539b-4c48-e650-00cea967b05f/679ef3ce-e2b2-4caa-84de-c40ebf375bd3_5._U65b0_U9053_U5177-_U9526_U9ca4_U7f57_U76d8.jpg/2208x1242.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource122/v4/0c/39/04/0c390442-71fe-3cb6-c3c7-41d82f76e024/81772aa7-39ee-4abf-be04-b7730190acd3_6._U65b0_U6a21_U5f0f-_U5bb6_U56ed_U73a9_U6cd5.jpg/2208x1242.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/a9/37/b4/a937b477-8f84-3d16-b209-6e924726b6c5/ba4b3276-7544-429f-a87b-38f9a85790aa_7._U65b0_U67aa_U68b0-M200_U72d9_U51fb_U67aa.jpg/2208x1242.png",
        "https://is5-ssl.mzstatic.com/image/thumb/PurpleSource112/v4/e4/d5/fc/e4d5fc20-ec46-7948-9ca5-5a0f40784a4f/02396389-718b-44c4-a354-0772dae033a4_8._U65b0_U914d_U4ef6-_U6218_U672f_U7784_U51c6_U955c.jpg/2208x1242.png"
      ],
      "i18n_lang": [
        "zh"
      ],
      "sellerName": "Shenzhen Tencent Tianyou Technology Ltd",
      "supportUrl": "http://pg.qq.com",
      "description": "【游戏介绍】\n《和平精英》是腾讯光子工作室群自研打造的军事竞赛体验手游。虚幻引擎4研发,次世代完美画质,极致视听感受;超大实景地图,打造指尖战场,全方面自由施展战术;百人同场竞技,真实弹道,完美的射击手感;好友一键组队,语音开黑;腾讯光子工作室群超过300人团队研发,给您带来一场震撼的竞技体验。\n【游戏特色】\n①实景地图  百人竞技 \n多张超大实景地图,体验丰富的环境变化,百人同场竞技,凭借战斗策略及射击能力勇夺冠军,力争胜利!\n②逼真场景 极致视听\n虚幻引擎4技术,成熟细节渲染,超大地图、逼真场景,更细腻、更真实!\n真实3D音效,高保真实时语音,感受身临其境的极致体验!\n③爽快操作 真实弹道\n真实枪械弹道,优秀射击手感,极易上手!\n几十种真实枪支、枪械真实弹道模拟,真实投掷品投掷轨迹,多种配件,多种近战武器的物理打击,带给玩家酣畅淋漓地战斗射击体验!\n④丰富载具 狂野飙车\n多种真实载具,丰富的飙车操纵体验,完美操作手感,比真实更真实!\n⑤一键组队 好友开黑\n随时随地,任性开黑! 一键组队,邀请好友语音开黑,好友共战。\n微信/手Q好友体系、战队系统、聊天室社交,无处不在的游戏内社交体验!上阵兄弟兵,战场见真情!\n⑥公平竞技 绿色环境\n强大的反外挂功能,针对各种机型的适配及性能优化,让游戏更公平、更顺畅!\n⑦多种娱乐模式玩法\n多种娱乐模式玩法,更集中的战斗区域,更快的游戏节奏,更短的游戏时长,带来畅爽快速的战斗体验!\n⑧全新团队竞技玩法\n复杂多变的地形结构,近距离的正面战斗。全新规则,全新地图,带来全新竞技体验!\n【订阅说明】\n1.订阅服务名称:和平精英特权;\n2.订阅价格:18元/月;\n3.订阅周期:1个月;\n4.特权内容:开通即获得180点券、6个任务卡、1个[限定]满200减80券和1个[外观]满300减100券的超值奖励,每日1个特权礼包,购买每周礼盒折扣,每日刷新1件特惠商品,开通特权商城购买专属资格,开通特权专属快捷换装槽位;\n5.付款:确认订阅后将会从您的iTunes账户进行扣费;\n6.订阅只能购买1次,订阅后会在每个月订阅到期前24小时自动从您的iTunes账户扣除¥18/月的费用并延长一个月的特权有效期,除非您在有效期结束前24小时取消订阅;\n7.如需取消订阅,可以前往设置 -iTunes Store 与 App Store- 查看Apple ID进入账户设置页面选择订阅,在订阅中管理和取消已经订阅的服务;\n8.隐私协议:https://game.qq.com/privacy_guide.shtml;\n9.用户协议:http://game.qq.com/contract.shtml;\n\n\n【编辑推荐】\n热血,智慧,勇气,信念!尽在和平精英!\n次世代高品质手游,更便捷的游戏体验,手机在手,说走就走!\n全力以赴,力争胜利,勇夺冠军!\n激情与畅爽,在这里大满足!\n\n【特别说明】\n在游戏《和平精英》中,用户使用平台账号(QQ或微信)登录,能够同步游戏中部分数据,包括等级、好友等非通过购买累计的数值。腾讯平台上的虚拟货币, 比如Q币、Q点都无法在游戏内使用。《和平精英》内一切抽奖活动与苹果公司无关,祝大家游戏愉快!",
      "primaryGenreId": 6014,
      "artistViewUrl": "https://apps.apple.com/cn/developer/shenzhen-tencent-tianyou-technology-ltd/id1586101358?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "游戏",
        "动作",
        "策略"
      ],
      "currency": "CNY",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "9.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.tencent.tmgp.pubgmhd",
      "artworkUrl512": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/21/cf/40/21cf407c-9205-6fa3-175c-5bff805c502e/AppIcon-1x_U007emarketing-0-10-0-85-220.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://game.qq.com/privacy_en.shtml",
      "primaryGenreName": "Games",
      "formattedPrice": "免费",
      "averageUserRating": 4.39891,
      "artistName": "Shenzhen Tencent Tianyou Technology Ltd",
      "r1": 1301187,
      "lang": "en",
      "app_country": "CN",
      "market_status": "PUBLISHED"
    },
    {
      "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/93/25/4f/93254f47-12ed-5159-43eb-644a0d8e3c5e/AppIcon-0-0-1x_U007emarketing-0-0-0-5-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/100x100bb.jpg",
      "r2": 98367,
      "r3": 215246,
      "userRatingCountForCurrentVersion": 14110787,
      "r4": 615786,
      "r5": 13005641,
      "averageUserRatingForCurrentVersion": 4.85562,
      "ipadScreenshotUrls": [
      ],
      "artistId": 472208019,
      "releaseNotes": "酷狗音乐,就是歌多!\n\n海量听书内容上线啦!《盗墓笔记》独家免费听,还有《镇魂街》《鬼吹灯之龙岭迷窟》等精彩内容畅听\n\n【音乐】\n1、全新推出音乐画报\n2、动态新增圈子社区\n3、评论新增最热最新排序及话题入口\n4、歌手页全新改版\n5、全新歌单页等你发现惊喜\n6、串串视频新增分享功能\n7、歌单可截图导入\n\n【直播】\n1、离线直播间增加短视频内容\n2、短视频新增达人勋章\n3、付费点歌优化\n4、电商直播用户购买流程优化\n\n【K歌】\n斗歌新增语音聊天\n\n【如果您在使用过程中遇到问题,请您添加官方QQ号:2943662891,或在App Store评论下留下QQ号,方便我们与您取得联系】",
      "price": 0,
      "trackContentRating": "17+",
      "userRatingCount": 14110787,
      "contentAdvisoryRating": "17+",
      "trackId": 472208016,
      "hasInAppPurchases": true,
      "languageCodesISO2A": [
        "EN",
        "ZH"
      ],
      "genreIds": [
        "6011",
        "6016"
      ],
      "iphone": true,
      "version": "11.5.6",
      "fileSizeBytes": "510848000",
      "artworkUrl60": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/93/25/4f/93254f47-12ed-5159-43eb-644a0d8e3c5e/AppIcon-0-0-1x_U007emarketing-0-0-0-5-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/60x60bb.jpg",
      "fileSizeBytesNumeric": 510848000,
      "trackViewUrl": "https://apps.apple.com/cn/app/%E9%85%B7%E7%8B%97%E9%9F%B3%E4%B9%90/id472208016?uo=4&at=10l9yE",
      "subtitle": "就是歌多,小说相声也很多",
      "trackCensoredName": "酷狗音乐-就是歌多",
      "supportedDevices": [
        "iPhone5s-iPhone5s",
        "iPadAir-iPadAir",
        "iPadAirCellular-iPadAirCellular",
        "iPadMiniRetina-iPadMiniRetina",
        "iPadMiniRetinaCellular-iPadMiniRetinaCellular",
        "iPhone6-iPhone6",
        "iPhone6Plus-iPhone6Plus",
        "iPadAir2-iPadAir2",
        "iPadAir2Cellular-iPadAir2Cellular",
        "iPadMini3-iPadMini3",
        "iPadMini3Cellular-iPadMini3Cellular",
        "iPodTouchSixthGen-iPodTouchSixthGen",
        "iPhone6s-iPhone6s",
        "iPhone6sPlus-iPhone6sPlus",
        "iPadMini4-iPadMini4",
        "iPadMini4Cellular-iPadMini4Cellular",
        "iPadPro-iPadPro",
        "iPadProCellular-iPadProCellular",
        "iPadPro97-iPadPro97",
        "iPadPro97Cellular-iPadPro97Cellular",
        "iPhoneSE-iPhoneSE",
        "iPhone7-iPhone7",
        "iPhone7Plus-iPhone7Plus",
        "iPad611-iPad611",
        "iPad612-iPad612",
        "iPad71-iPad71",
        "iPad72-iPad72",
        "iPad73-iPad73",
        "iPad74-iPad74",
        "iPhone8-iPhone8",
        "iPhone8Plus-iPhone8Plus",
        "iPhoneX-iPhoneX",
        "iPad75-iPad75",
        "iPad76-iPad76",
        "iPhoneXS-iPhoneXS",
        "iPhoneXSMax-iPhoneXSMax",
        "iPhoneXR-iPhoneXR",
        "iPad812-iPad812",
        "iPad834-iPad834",
        "iPad856-iPad856",
        "iPad878-iPad878",
        "Watch4-Watch4",
        "iPadMini5-iPadMini5",
        "iPadMini5Cellular-iPadMini5Cellular",
        "iPadAir3-iPadAir3",
        "iPadAir3Cellular-iPadAir3Cellular",
        "iPodTouchSeventhGen-iPodTouchSeventhGen",
        "iPhone11-iPhone11",
        "iPhone11Pro-iPhone11Pro",
        "iPadSeventhGen-iPadSeventhGen",
        "iPadSeventhGenCellular-iPadSeventhGenCellular",
        "iPhone11ProMax-iPhone11ProMax",
        "iPhoneSESecondGen-iPhoneSESecondGen",
        "iPadProSecondGen-iPadProSecondGen",
        "iPadProSecondGenCellular-iPadProSecondGenCellular",
        "iPadProFourthGen-iPadProFourthGen",
        "iPadProFourthGenCellular-iPadProFourthGenCellular",
        "iPhone12Mini-iPhone12Mini",
        "iPhone12-iPhone12",
        "iPhone12Pro-iPhone12Pro",
        "iPhone12ProMax-iPhone12ProMax",
        "iPadAir4-iPadAir4",
        "iPadAir4Cellular-iPadAir4Cellular",
        "iPadEighthGen-iPadEighthGen",
        "iPadEighthGenCellular-iPadEighthGenCellular",
        "iPadProThirdGen-iPadProThirdGen",
        "iPadProThirdGenCellular-iPadProThirdGenCellular",
        "iPadProFifthGen-iPadProFifthGen",
        "iPadProFifthGenCellular-iPadProFifthGenCellular",
        "iPhone13Pro-iPhone13Pro",
        "iPhone13ProMax-iPhone13ProMax",
        "iPhone13Mini-iPhone13Mini",
        "iPhone13-iPhone13",
        "iPadMiniSixthGen-iPadMiniSixthGen",
        "iPadMiniSixthGenCellular-iPadMiniSixthGenCellular",
        "iPadNinthGen-iPadNinthGen",
        "iPadNinthGenCellular-iPadNinthGenCellular",
        "iPhoneSEThirdGen-iPhoneSEThirdGen",
        "iPadAirFifthGen-iPadAirFifthGen",
        "iPadAirFifthGenCellular-iPadAirFifthGenCellular",
        "iPhone14-iPhone14",
        "iPhone14Plus-iPhone14Plus",
        "iPhone14Pro-iPhone14Pro",
        "iPhone14ProMax-iPhone14ProMax",
        "iPadTenthGen-iPadTenthGen",
        "iPadTenthGenCellular-iPadTenthGenCellular",
        "iPadPro11FourthGen-iPadPro11FourthGen",
        "iPadPro11FourthGenCellular-iPadPro11FourthGenCellular",
        "iPadProSixthGen-iPadProSixthGen",
        "iPadProSixthGenCellular-iPadProSixthGenCellular"
      ],
      "ipad": true,
      "advisories": [
        "频繁/强烈的色情内容或裸露"
      ],
      "screenshotUrls": [
        "https://is1-ssl.mzstatic.com/image/thumb/Purple113/v4/21/1c/16/211c160a-42b6-e36a-8f2c-3ccc66d0c267/pr_source.png/320x480bb.png",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple123/v4/22/36/45/223645f6-9c5a-4308-5706-02612836c1e1/pr_source.jpg/320x480bb.jpg",
        "https://is2-ssl.mzstatic.com/image/thumb/Purple123/v4/cf/30/84/cf30848f-fd2a-6e34-e91e-c4e2834ff238/pr_source.jpg/320x480bb.jpg",
        "https://is3-ssl.mzstatic.com/image/thumb/Purple113/v4/7c/ff/d1/7cffd1cd-34ae-0db5-af97-8121de431ebd/pr_source.jpg/320x480bb.jpg"
      ],
      "i18n_lang": [
        "zh"
      ],
      "sellerName": "Guangzhou KuGou Technology  CO. , LTD",
      "supportUrl": "https://mobiles.kugou.com/new/app/faq/index.php?plat=2",
      "description": "【酷狗音乐核心功能】\n1. 更人性化的操作界面 \n界面全新设计,清新简洁,点划之间尽享畅爽体验; \n2. 乐库体验大有不同 \n耳目一新的乐库,新歌速递、权威榜单、精选歌单,你要找的音乐,都在酷狗乐库; \n3. 专业蝰蛇音效 \n由蝰蛇(VIPER)专业打造的智能均衡环绕音,更有多种预设音效,让同一首歌也有不同的味道;\n4. 融合酷狗收音机\n音乐、情感、新闻……聆听不同的声音,感受不同世界,重拾不经意流去的调频时光; \n5. 随身携带的手机KTV \n超过300万首海量伴奏,录音棚、KTV、音乐厅、演唱会……多种音效,蝰蛇(VIPER)音频渲染,让你开嗓即成天籁;\n6. 互动社区,以歌会友\n精准定位附近好声音,同城歌王,谁有我强;\n7.海量听书内容\n有声小说、相声评书、儿童故事等内容应有尽有,享受美妙听书的乐趣,快来畅听精彩内容;\n8. 演艺直播,有声有色 \n每天都有超过6000位美女主播24小时不间断现场直播,你点她唱,与千万音乐爱好者同时互动,造就网络好声音;\n9.个性化换肤\n主题色随着背景图而改变,更有多款主题任君选择。\n\n【增加青少年模式】\n在“青少年模式”下, 只能播放适合未成年人收听的内容,并且有以下限制:\n1. 不能进入直播间和K房;\n2. 不能在直播、K房充值和消费;\n3. 每日22点-次日6点无法使用短视频和听书功能;\n4. 每日使用短视频和听书功能超过40分钟需输入密码才能继续使用。\n\n【应用内购买服务】\n提供应用内音乐包购买和续期服务,有七种方式可供选择:\n1个月普通音乐包 = 8元\n6个月普通音乐包 = 45元\n12个月普通音乐包 = 88元\n1个月豪华音乐包 = 12元\n6个月豪华音乐包 = 68元\n12个月豪华音乐包 = 128元\n\n提供应用内酷币购买服务,有六种订购方式可供选择:\n3酷币  = 3元\n6酷币  = 6元\n12酷币  = 12元\n25酷币  = 25元\n108酷币  = 108元\n288酷币  = 288元\n\n提供应用内星币购买服务,有八种订购方式可供选择:\n400星币  = 6元\n800星币  = 12元\n2000星币 = 30元\n4000星币 = 60元\n7200星币 = 108元\n13200星币= 198元\n19200星币= 288元\n39200星币= 588元\n\n提供应用内唱币购买服务,有八种订购方式可供选择:\n600唱币  = 6元\n1200唱币  = 12元\n3000唱币  = 30元\n6000唱币  = 60元\n10800唱币  = 108元\n19800唱币  = 198元\n28800唱币  = 288元\n58800唱币  = 588元\n\n提供应用内听书会员购买服务,有三种方式可供选择:\n1个月听书会员= 6元\n3个月听书会员 = 18元\n12个月听书会员 = 60元\n\n提供应用内推币购买服务,有十三种订购方式可供选择:\n8推币  = 8元\n12推币  = 12元\n18推币  = 18元\n30推币  = 30元\n40推币  = 40元\n50推币  = 50元\n98推币  = 98元\n168推币  = 168元\n198推币  = 198元\n298推币  = 298元\n518推币  = 518元\n618推币  = 618元\n998推币  = 998元\n\n注意:\n订购酷狗音乐包、酷币、星币和唱币服务可以通过iTunes帐户直接付费\n订购生效后,无法退款\n订购成功后,如果帐号没有及时刷新酷狗音乐包、酷币、星币和唱币,可尝试重新登录\n\n【豪华VIP自动订阅服务说明】\n订阅周期:1个月\n价格:12元/月\n付款:用户确认购买并付款后计入iTunes账户。\n续订:购买连续包月会员的账号,会在每个月到期前24小时,自动在iTunes账户扣费并延长1个月会员有效期。\n取消订阅:请手动打开iOS的“设置”->进入“iTunes Store与App Store”->点击“Apple ID”->选择“查看 Apple ID”->进入“账户设置”->点击“订阅”,选择酷狗音乐豪华VIP取消订阅即可。如未在订阅期结束的至少24小时前关闭订阅,此订阅将会自动续订。\n会员服务协议:http://m.kugou.com/vip/ios/service.html\n连续包月协议:http://m.kugou.com/vip/ios/service1.html\n隐私政策:http://m.kugou.com/vip/ios/service2.html\n\n\n【音乐包自动订阅服务说明】\n订阅周期:1个月\n价格:8元/月\n付款:用户确认购买并付款后计入iTunes账户。\n续订:购买连续包月会员的账号,会在每个月到期前24小时,自动在iTunes账户扣费并延长1个月会员有效期。\n取消订阅:请手动打开iOS的“设置”->进入“iTunes Store与App Store”->点击“Apple ID”->选择“查看 Apple ID”->进入“账户设置”->点击“订阅”,选择酷狗音乐音乐包取消订阅即可。如未在订阅期结束的至少24小时前关闭订阅,此订阅将会自动续订。\n会员服务协议:http://m.kugou.com/vip/ios/service.html\n连续包月协议:http://m.kugou.com/vip/ios/service1.html\n隐私政策:http://m.kugou.com/vip/ios/service2.html\n\n【联系我们】\n我们的改进,离不开你的建议,你也可以通过以下方式联系我们,让我们共同打造史上最强的音乐播放器。\n意见反馈:客户端内左上角菜单键-设置-帮助与反馈\n客服QQ:2943662891\n客服邮箱:kugou-mcs1@kugou.com\n官方微信:酷狗音乐\n\n【特别说明】\n尊重版权,酷狗音乐仅在中国大陆地区提供在线资源服务,还请谅解。",
      "primaryGenreId": 6011,
      "artistViewUrl": "https://apps.apple.com/cn/developer/kugou-technology-co-ltd/id472208019?uo=4",
      "market_source": "ITUNES",
      "genres": [
        "音乐",
        "娱乐"
      ],
      "currency": "CNY",
      "isVppDeviceBasedLicensingEnabled": true,
      "minimumOsVersion": "11.0",
      "isGameCenterEnabled": false,
      "bundleId": "com.kugou.kugou1002",
      "artworkUrl512": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/93/25/4f/93254f47-12ed-5159-43eb-644a0d8e3c5e/AppIcon-0-0-1x_U007emarketing-0-0-0-5-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/512x512bb.jpg",
      "privacyPolicyUrl": "http://m.kugou.com/html/privacy.html",
      "primaryGenreName": "Music",
      "formattedPrice": "免费",
      "averageUserRating": 4.85562,
      "artistName": "KuGou Technology CO. , LTD",
      "r1": 173790,
      "lang": "en",
      "app_country": "CN",
      "market_status": "PUBLISHED"
    }
  ],
  "number_results": 1745078,
  "has_next": true,
  "page": 1,
  "num_pages": 174508,
  "limit": 10
}

Last Modified: 19 Dec 2022


Automate Your Workflow With 42matters’ APIs


Integrate app data and intelligence into your existing workflows, dashboards, CRM platforms, messaging platforms, and more! Below is a selection of the third-party services that are compatible with 42matters’ APIs:



Salesforce

Salesforce

HubSpot

HubSpot

Slack

Slack

Intercom

Intercom

Pipedrive

Pipedrive

Zendesk

Zendesk

Gekoboard

Gekoboard

Klipfolio

Klipfolio

Dynamics

Dynamics


And many more!