Advanced Query API for Android Apps


42matters’ Advanced Query API for Android Apps. Includes multiple filters enabling you to sort by all Google Play parameters for data analysis, market insights.

Definition

Endpoint:

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

Hits per request:

3 (Note: if you request multiple apps by package name 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 Return language-specific metadata. If no translation is available the default language of the app is used. Internationalized fields include t​itle, short_desc, description, what_is_new, screenshots. ID of Supported Languages en
app_country optional Return country-specific app metadata. Country-specific fields include price, price_numeric, price_currency. 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. Premium fields such as email, similar, permissions require higher plans. See Android App Object for more details.
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 Android 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/android/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 GPlay 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 "android tv"
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 false Tiny
include_developer optional Include developer name (app publisher) in full-text search. Only together with full_text_term. true, false false Tiny
package_name optional A single package name or a list of package names to match. Package names are case-sensitive. List of package names available on GPlay store. Each app requested by package name costs 1 hit. Tiny
package_name_case_insensitive optional Consider package names as case-insensitive. Only together with package_name. true, false false Tiny
package_name_prefix_search optional Filter apps by package name prefix. Only together with package_name and only when a single package name has been provided. true, false Tiny
market_source optional List of market sources (stores) for the app. GOOGLE GOOGLE Tiny
market_status optional List of app statuses on the selected markets. PUBLISHED
UNPUBLISHED
PUBLISHED Tiny
developer optional Full-text search only in the app developer name. Any app developer name or part of it. Tiny
developer_exact_match optional Exact match on developer name. Only together with developer. true, false Tiny
cat_keys optional Filter apps by Google Play categories. Multiple categories are interpreted as an OR. List of Google Play categories. ["APPLICATION", "GAME"] Tiny
family_filter optional Filter apps by Google Play Family categories. Multiple categories are interpreted as an OR. List of Google Play Family categories. Tiny
content_descriptors optional Filter apps by Google Play Content Descriptors JSON object with the format:

{
  "any": [
    "Alcohol Use",
    "Blood"
  ],
  "all": [
    "Alcohol Use",
    "Blood"
  ]
}
List of Google Play Content Descriptors.

Tiny
age_approved_by_teachers optional Filter apps by Google Play Age Approved By Teachers JSON object with the format:

{
  "any": [
    "Teacher Approved"
  ],
  "all": [
    "Teacher Approved"
  ]
}
List of Google Play Age Approved By Teachers.

Tiny
price_flag optional Filter apps by price in USD. "free"
"paid"
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
iap optional Whether the apps should support in-app purchases or not. "with_iap"
"without_iap"
Tiny
contains_ads optional Whether the apps displays ads. true
false
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
downloads_gte optional Number of downloads greater than or equal to given value. Any integer value ≥ 0 which is a valid download bracket start - e.g. 100, 500, 1000, 5000, etc. Tiny
downloads_lte optional Number of downloads less than or equal to given value. Any integer value ≥ 0 which is a valid download bracket end - e.g. 100, 500, 1000, 5000, etc. Tiny
content_rating optional Filter apps by content rating. Multiple content ratings are interpreted as an OR. "Unrated"
"Everyone"
"Everyone 10+"
"Teen"
"Mature 17+"
Tiny
editors_choice optional Filter apps whether they have are marked as Editors' Choice. true
false
Tiny
promo_video optional Whether or not an app has a promotional video. 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
sort optional Sort returned apps by a sorting criteria.
Value Description
number_ratings 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.
rating Sort by rating
price Sort by price
size Sort by size
alphabetical Sort alphabetically
market_update Sort by Last Update Date
unpublished_timestamp Sort by Unpublished Timestamp
created Sort by Release Date
downloads Sort by Downloads
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.
number_ratings 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.
"2019-05-31".
Small
domain_search_term optional Full-text search in the website/domain fields for gplay apps. The domain search term. Tiny
domain_search_in optional Domain search in the following fields. List of strings. Available options are:
"website"
"email"
Tiny
domain_exact_match optional Exact match flag for domain search, no full-text matching. true,false Tiny
ranking optional Filter apps whether they appear in any Top Charts. JSON object with the format:
{
  "list_name": "_ANY",
  "cat_key": "_ANY",
  "country": "_ANY",
  "rank_gte": 0,
  "rank_lte": 600
}
Available values for list_name, cat_key, country can be seen on Apple App Store Top Charts docs.
Small
privacy_policy optional Whether or not an app has 'privacy policy url' or not. true, false Small
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
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": [
    "PACKAGE_NAME_1",
    "PACKAGE_NAME_2",
    ..
  ],
  "unlike": [
    "PACKAGE_NAME_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 Android permissions. For example
[
  "android.permission.INTERNET"
]
.
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 Android permissions. For example
[
  "android.permission.INTERNET"
]
.
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 Android 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 Android 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 Android SDK IDs. For example
[
  "google-ads-admob"
]
.
Medium
interactive_elements optional Filter apps by Google Play Interactive Elements JSON object with the format:

{
  "any": [
    "Users Interact",
    "Shares Info"
  ],
  "all": [
    "Digital Purchases",
    "In-App Purchases"
  ]
}
List of Google Play Interactive Elements.

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 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
preregister optional Whether or not an app has a 'pre-register' flag or not. true, false Large
testing optional Whether or not an app has a 'testing' flag or not. true, false Large
mau optional Filter apps by last 30 days of monthly active users. JSON object with the format:

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

Large

Responses

Status Code Indication Content-Type Body
200 Everything is OK application/json
Attribute Type Description
results Array List of Android app objects
number_results Integer Number of found apps to return
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

curl -XPOST "https://data.42matters.com/api/v2.0/android/apps/query.json?access_token=YOUR_ACCESS_TOKEN&fields=package_name,title" -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 Google Play'
{
  "results": [
    {
      "content_descriptors": [
      ],
      "downloads_min": 5000000000,
      "rating": 4.204883575439453,
      "cat_keys": [
        "COMMUNICATION",
        "APPLICATION"
      ],
      "permissions": [
        {
          "id": "android.permission.ACCESS_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.VIBRATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_COARSE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_FINE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_NUMBERS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECEIVE_SMS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_BIOMETRIC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FINGERPRINT",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CAMERA",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECORD_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_OWN_CALLS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.AUTHENTICATE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CHANGE_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.INTERNET",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.NEARBY_WIFI_DEVICES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BLUETOOTH",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BROADCAST_STICKY",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CHANGE_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_TASKS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.INSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MODIFY_AUDIO_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.NFC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PROFILE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_SYNC_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_SYNC_STATS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECEIVE_BOOT_COMPLETED",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.SCHEDULE_EXACT_ALARM",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.SEND_SMS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_CREDENTIALS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WAKE_LOCK",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_IMAGES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_VIDEO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.POST_NOTIFICATIONS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_SYNC_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.REQUEST_INSTALL_PACKAGES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.FOREGROUND_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FULL_SCREEN_INTENT",
          "source": "uses_permission"
        },
        {
          "id": "com.android.launcher.permission.INSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.android.launcher.permission.UNINSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.c2dm.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.providers.gsf.permission.READ_GSERVICES",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.READ",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.WRITE",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.READ_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.UPDATE_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.sonyericsson.home.permission.BROADCAST_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.sonymobile.home.permission.PROVIDER_INSERT_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.huawei.android.launcher.permission.READ_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.huawei.android.launcher.permission.WRITE_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.huawei.android.launcher.permission.CHANGE_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.whatsapp.permission.BROADCAST",
          "source": "uses_permission"
        },
        {
          "id": "com.whatsapp.permission.MAPS_RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "com.whatsapp.permission.REGISTRATION",
          "source": "uses_permission"
        },
        {
          "id": "com.whatsapp.sticker.READ",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.services.identity.FEO2",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CALL_PHONE",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.ANSWER_PHONE_CALLS",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.READ_CALL_LOG",
          "source": "uses_permission_sdk_23"
        },
        {
          "protection_level": "signature",
          "id": "com.whatsapp.permission.BROADCAST",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.whatsapp.permission.MAPS_RECEIVE",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.whatsapp.permission.REGISTRATION",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.whatsapp.permission.MIGRATION_CONTENT_PROVIDER",
          "source": "permission"
        },
        {
          "protection_level": "normal",
          "id": "com.whatsapp.sticker.READ",
          "source": "permission"
        }
      ],
      "price": "",
      "cat_int": 5,
      "ratings_2": 6925139,
      "ratings_1": 20142676,
      "similar": [
        "com.whatsapp.w4b",
        "com.facebook.katana",
        "com.facebook.orca",
        "com.instagram.android",
        "com.facebook.lite",
        "com.zhiliaoapp.musically"
      ],
      "ratings_4": 17140311,
      "min_sdk": "4.1 and up",
      "ratings_3": 10300543,
      "ratings_5": 120418563,
      "promo_video": "http://www.youtube.com/watch?v=WIGb1jZXCV0",
      "created": "2010-10-18T00:00:00+00:00",
      "interactive_elements": [
        "Users Interact",
        "Digital Purchases"
      ],
      "version": "2.23.5.78",
      "price_i18n_countries": [
      ],
      "size": 42508063,
      "market_update": "2023-03-13T00:00:00+00:00",
      "cat_type": 0,
      "short_desc": "Simple. Reliable. Private.",
      "physical_address": "1601 Willow RoadMenlo Park, CA 94025",
      "app_availability": {
        "available_in": [
          "DE",
          "HK",
          "TW",
          "PT",
          "DK",
          "LT",
          "LU",
          "HR",
          "LV",
          "UA",
          "HU",
          "MA",
          "DZ",
          "ID",
          "IE",
          "US",
          "EE",
          "EG",
          "IL",
          "AE",
          "IN",
          "ZA",
          "IR",
          "IT",
          "MX",
          "AM",
          "MY",
          "ES",
          "AR",
          "AT",
          "AU",
          "VN",
          "NG",
          "RO",
          "NL",
          "NO",
          "RS",
          "BE",
          "FI",
          "RU",
          "BG",
          "JO",
          "JP",
          "FR",
          "NZ",
          "SA",
          "BR",
          "SE",
          "SG",
          "SI",
          "BY",
          "SK",
          "GB",
          "CA",
          "GE",
          "CH",
          "KR",
          "CL",
          "CN",
          "GR",
          "CO",
          "TH",
          "PE",
          "CY",
          "LB",
          "CZ",
          "PH",
          "TN",
          "PK",
          "PL",
          "TR"
        ],
        "not_available_in": [
        ],
        "availability_unknown": [
        ],
        "package_name": "com.whatsapp"
      },
      "i18n_lang": [
        "el",
        "vi",
        "ca",
        "it",
        "ar",
        "cs",
        "et",
        "es",
        "nl",
        "pt",
        "no",
        "tr",
        "lv",
        "zh-cn",
        "fr",
        "hr",
        "hu",
        "hi",
        "fi",
        "da",
        "ja",
        "sk",
        "ms",
        "en-gb",
        "sl",
        "ko",
        "zh-tw",
        "en",
        "ru",
        "fr-ca",
        "ro",
        "de",
        "lt",
        "uk",
        "id",
        "sv",
        "pt-br",
        "pt-pt",
        "th",
        "fa",
        "pl",
        "he"
      ],
      "description": "WhatsApp from Meta is a FREE messaging and video calling app. It’s used by over 2B people in more than 180 countries. It’s simple, reliable, and private, so you can easily keep in touch with your friends and family. WhatsApp works across mobile and desktop even on slow connections, with no subscription fees*.\n\nPrivate messaging across the world\n\nYour personal messages and calls to friends and family are end-to-end encrypted. No one outside of your chats, not even WhatsApp, can read or listen to them.\n\nSimple and secure connections, right away\n\nAll you need is your phone number, no user names or logins. You can quickly view your contacts who are on WhatsApp and start messaging.\n\nHigh quality voice and video calls\n\nMake secure video and voice calls with up to 8 people for free*. Your calls work across mobile devices using your phone’s Internet service, even on slow connections.\n\nGroup chats to keep you in contact\n\nStay in touch with your friends and family. End-to-end encrypted group chats let you share messages, photos, videos and documents across mobile and desktop.\n\nStay connected in real time\n\nShare your location with only those in your individual or group chat, and stop sharing at any time. Or record a voice message to connect quickly.\n\nShare daily moments through Status\n\nStatus allows you to share text, photos, video and GIF updates that disappear after 24 hours. You can choose to share status posts with all your contacts or just selected ones.\n\n\n*Data charges may apply. Contact your provider for details.\n\n---------------------------------------------------------\n\nIf you have any feedback or questions, please go to WhatsApp > Settings > Help > Contact Us",
      "title": "WhatsApp Messenger",
      "screenshots": [
        "https://play-lh.googleusercontent.com/tNuMAclO_TrRn5RbiSo2iU2ySljFaHjCIWoMUSoemUcl4FjTyVO0PpJZL_zTrYf7v_4=w526-h296",
        "https://play-lh.googleusercontent.com/ijfSGQUCqeCmCQX0w_HjdSWkiYZoFk5JZ5CsxmGI-qT1VPT8V3wGohMBpWZOAp2o7A=w526-h296",
        "https://play-lh.googleusercontent.com/Ck5x7vPWfgXoLvkGqVs5INzV3dzHMYYy4Jr6YVpXDTR-00p_V_kpGABtfXCp9qx10cs=w526-h296",
        "https://play-lh.googleusercontent.com/ef3mz9xoDiwk08KB7B6oN0uSqJkxy8yMBwdOl9TGc3rSsOLdYBQlRZqMCduJjJyeBQ=w526-h296",
        "https://play-lh.googleusercontent.com/8InPqYGQ-28qwt_mLmm6R3VzbMcf3ZSJNUxO_OJosyLRqPHeStZFtjKskgDvHkanfRUJ=w526-h296"
      ],
      "downloads": "5B+",
      "market_source": "GOOGLE",
      "preregister": false,
      "content_rating": "Everyone",
      "iap": false,
      "lang": "en",
      "email": "android@support.whatsapp.com",
      "what_is_new": "\n• Introducing Voice Status - you can now record a voice note and share it to Status. Go to Status tab > tap the “pencil” icon > and hold the “microphone” icon to record.\n• You can now quickly mute conversations from incoming notifications without opening WhatsApp. Tap on “Mute” in the notifications quick actions and the chat will be muted. \nThese features will roll out over the coming weeks. Thanks for using WhatsApp! \n",
      "price_numeric": 0,
      "website": "http://www.whatsapp.com/",
      "downloads_max": 10000000000,
      "cat_key": "COMMUNICATION",
      "badges": [
        "Editors' Choice"
      ],
      "contains_ads": false,
      "privacy_policy": "http://www.whatsapp.com/legal/#Privacy",
      "package_name": "com.whatsapp",
      "from_developer": [
      ],
      "category": "Communication",
      "developer": "WhatsApp LLC",
      "number_ratings": 174927235,
      "app_country": "US",
      "icon": "https://play-lh.googleusercontent.com/bYtqbOcTYOlgc6gqZ2rwb8lptHuwlNE75zYJu6Bn076-hTmvd96HH-6v7S0YUAAJXoJN=s180",
      "icon_72": "https://play-lh.googleusercontent.com/bYtqbOcTYOlgc6gqZ2rwb8lptHuwlNE75zYJu6Bn076-hTmvd96HH-6v7S0YUAAJXoJN=s180-rw",
      "testing": true,
      "market_status": "PUBLISHED",
      "market_url": "https://play.google.com/store/apps/details?id=com.whatsapp&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi",
      "deep_link": "https://play.google.com/store/apps/details?id=com.whatsapp&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi"
    },
    {
      "content_descriptors": [
      ],
      "downloads_min": 10000000000,
      "rating": 4.133380889892578,
      "cat_keys": [
        "VIDEO_PLAYERS",
        "APPLICATION"
      ],
      "permissions": [
        {
          "id": "android.permission.INTERNET",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_IMAGES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_VIDEO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECEIVE_BOOT_COMPLETED",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_DOCUMENTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_CREDENTIALS",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.providers.gsf.permission.READ_GSERVICES",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.c2dm.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WAKE_LOCK",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.NFC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CAMERA",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.VIBRATE",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID_NOTIFICATION",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.youtube.permission.C2D_MESSAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_PACKAGE_SIZE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.FOREGROUND_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FINGERPRINT",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_BIOMETRIC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MODIFY_AUDIO_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_FINE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_COARSE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECORD_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.SYSTEM_ALERT_WINDOW",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.HIGH_SAMPLING_RATE_SENSORS",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.READ",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.WRITE",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.READ_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.UPDATE_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.sonyericsson.home.permission.BROADCAST_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.sonymobile.home.permission.PROVIDER_INSERT_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.POST_NOTIFICATIONS",
          "source": "uses_permission"
        },
        {
          "protection_level": "signature",
          "id": "com.google.android.youtube.permission.C2D_MESSAGE",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.google.android.youtube.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION",
          "source": "permission"
        }
      ],
      "price": "",
      "cat_int": 53,
      "ratings_2": 5779646,
      "ratings_1": 20164193,
      "similar": [
        "com.android.chrome",
        "com.zhiliaoapp.musically",
        "com.facebook.katana",
        "com.facebook.orca",
        "com.netflix.mediaclient",
        "com.spotify.music"
      ],
      "ratings_4": 12509881,
      "min_sdk": "Varies with device",
      "ratings_3": 8760201,
      "ratings_5": 100516470,
      "promo_video": "https://play.google.com/video/lava/web/player/yt:movie:__NeP0RqACU?autoplay=1&embed=play",
      "created": "2010-10-20T00:00:00+00:00",
      "interactive_elements": [
        "Users Interact",
        "Digital Purchases"
      ],
      "version": "18.10.36",
      "price_i18n_countries": [
      ],
      "size": 49675329,
      "market_update": "2023-03-22T00:00:00+00:00",
      "cat_type": 0,
      "short_desc": "Enjoy your favorite videos and channels with the official YouTube app.",
      "physical_address": "1600 Amphitheatre Parkway, Mountain View 94043",
      "app_availability": {
        "available_in": [
          "DE",
          "HK",
          "TW",
          "PT",
          "DK",
          "LT",
          "LU",
          "HR",
          "LV",
          "UA",
          "HU",
          "MA",
          "DZ",
          "ID",
          "IE",
          "US",
          "EE",
          "EG",
          "IL",
          "AE",
          "IN",
          "ZA",
          "IT",
          "MX",
          "AM",
          "MY",
          "ES",
          "AR",
          "AT",
          "AU",
          "VN",
          "NG",
          "RO",
          "NL",
          "NO",
          "RS",
          "BE",
          "FI",
          "RU",
          "BG",
          "JO",
          "JP",
          "FR",
          "NZ",
          "SA",
          "BR",
          "SE",
          "SG",
          "SI",
          "BY",
          "SK",
          "GB",
          "CA",
          "GE",
          "CH",
          "KR",
          "CL",
          "CN",
          "GR",
          "CO",
          "TH",
          "PE",
          "CY",
          "LB",
          "CZ",
          "PH",
          "TN",
          "PK",
          "PL",
          "TR"
        ],
        "not_available_in": [
          "IR"
        ],
        "availability_unknown": [
        ],
        "package_name": "com.google.android.youtube"
      },
      "i18n_lang": [
        "de",
        "hi",
        "no",
        "ru",
        "fi",
        "pt",
        "bg",
        "hr",
        "fr",
        "zh-cn",
        "sk",
        "id",
        "ca",
        "sr",
        "sv",
        "ko",
        "zh-tw",
        "pt-br",
        "ms",
        "el",
        "it",
        "es",
        "th",
        "ja",
        "pl",
        "da",
        "ro",
        "nl",
        "tr",
        "lt",
        "lv",
        "et",
        "hu",
        "cs",
        "en",
        "fr-ca",
        "ar",
        "en-gb",
        "pt-pt",
        "fa",
        "sl",
        "uk",
        "vi",
        "he"
      ],
      "description": "Get the official YouTube app on Android phones and tablets. 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",
      "title": "YouTube",
      "screenshots": [
        "https://play-lh.googleusercontent.com/BxbaFv67YkqT48wc4-9ILNSmLYLb92mgkrAYdyBwI478H2s6UDTutAveNu7cOZFEeSg=w526-h296",
        "https://play-lh.googleusercontent.com/lnfQ42Hslc6B_0A37YY_sNVPGEpND0YY0hcvjKLPCDB7dJNlDPn2ILICypeJxhecBQ=w526-h296",
        "https://play-lh.googleusercontent.com/nD2LH9KrtYmdruRXUn2ZQypfPHViJ1UYB1fHDN7Ti5JOmq8qHd-54oBCAVNUqvGWYC8=w526-h296",
        "https://play-lh.googleusercontent.com/xCBJ9BRKffRi8orvRzLn-LcMPPc1A8QC383k8NldcIREeoprwffXPgM_m85yD61B1Ng=w526-h296",
        "https://play-lh.googleusercontent.com/vOxdD2u-ys9J0U964Hle8gCzNAAht5-KR_xJcPCb1ukoGo_4ypD2nByU6wu-x8MUEw=w526-h296"
      ],
      "downloads": "10B+",
      "market_source": "GOOGLE",
      "preregister": false,
      "content_rating": "Teen",
      "iap": false,
      "lang": "en",
      "email": "ytandroid-support@google.com",
      "what_is_new": "For new features, look for in-product education & notifications sharing the feature and how to use it!",
      "price_numeric": 0,
      "website": "https://www.youtube.com",
      "cat_key": "VIDEO_PLAYERS",
      "badges": [
      ],
      "contains_ads": true,
      "privacy_policy": "http://www.google.com/policies/privacy",
      "package_name": "com.google.android.youtube",
      "from_developer": [
        "com.google.android.apps.walletnfcrel",
        "com.google.android.apps.translate",
        "com.google.android.apps.youtube.unplugged",
        "com.google.android.apps.dynamite",
        "com.google.android.apps.youtube.kids",
        "com.google.android.apps.authenticator2"
      ],
      "category": "Video Players & Editors",
      "developer": "Google LLC",
      "number_ratings": 147730394,
      "app_country": "US",
      "icon": "https://play-lh.googleusercontent.com/lMoItBgdPPVDJsNOVtP26EKHePkwBg-PkuY9NOrc-fumRtTFP4XhpUNk_22syN4Datc=s180",
      "icon_72": "https://play-lh.googleusercontent.com/lMoItBgdPPVDJsNOVtP26EKHePkwBg-PkuY9NOrc-fumRtTFP4XhpUNk_22syN4Datc=s180-rw",
      "testing": true,
      "market_status": "PUBLISHED",
      "market_url": "https://play.google.com/store/apps/details?id=com.google.android.youtube&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi",
      "deep_link": "https://play.google.com/store/apps/details?id=com.google.android.youtube&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi"
    },
    {
      "content_descriptors": [
      ],
      "downloads_min": 1000000000,
      "rating": 4.251855850219727,
      "cat_keys": [
        "SOCIAL",
        "APPLICATION"
      ],
      "permissions": [
        {
          "id": "android.permission.INTERNET",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WAKE_LOCK",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_CREDENTIALS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECEIVE_BOOT_COMPLETED",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.VIBRATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.FOREGROUND_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FULL_SCREEN_INTENT",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.c2dm.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BLUETOOTH",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CAMERA",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PROFILE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_FINE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECORD_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MODIFY_AUDIO_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_IMAGES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_VIDEO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_MEDIA_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.POST_NOTIFICATIONS",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_NUMBERS",
          "source": "uses_permission"
        },
        {
          "id": "com.android.launcher.permission.INSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.android.launcher.permission.UNINSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.instagram.direct.permission.PROTECTED_DEEPLINKING",
          "source": "uses_permission"
        },
        {
          "id": "com.instagram.direct.permission.DIRECT_APP_THREAD_STORE_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.services.identity.FEO2",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.READ_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.UPDATE_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.huawei.android.launcher.permission.CHANGE_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.sonyericsson.home.permission.BROADCAST_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.sonymobile.home.permission.PROVIDER_INSERT_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": ".permission.RECEIVE_ADM_MESSAGE",
          "source": "uses_permission"
        },
        {
          "id": "com.amazon.device.messaging.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "com.instagram.android.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.REORDER_TASKS",
          "source": "uses_permission"
        },
        {
          "id": "com.android.vending.BILLING",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_OWN_CALLS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_BIOMETRIC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FINGERPRINT",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_WIFI_STATE",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.UPDATE_APP_BADGE",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.CALL_PHONE",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.BLUETOOTH_ADMIN",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.CHANGE_WIFI_STATE",
          "source": "uses_permission_sdk_23"
        },
        {
          "protection_level": "signatureOrSystem",
          "id": "com.instagram.android.permission.SYSTEM_ONLY",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": ".permission.RECEIVE_ADM_MESSAGE",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.instagram.android.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION",
          "source": "permission"
        }
      ],
      "price": "",
      "cat_int": 19,
      "ratings_2": 4475446,
      "iap_min": 0.49,
      "ratings_1": 16888986,
      "similar": [
        "com.snapchat.android",
        "com.facebook.katana",
        "com.whatsapp",
        "com.zhiliaoapp.musically",
        "com.facebook.orca",
        "com.facebook.lite"
      ],
      "ratings_4": 13104987,
      "min_sdk": "Varies with device",
      "ratings_3": 6965315,
      "ratings_5": 102946398,
      "promo_video": "https://play.google.com/video/lava/web/player/yt:movie:uwZZEWrGgtY?autoplay=1&embed=play",
      "created": "2012-04-03T00:00:00+00:00",
      "interactive_elements": [
        "Users Interact",
        "Shares Info",
        "Shares Location"
      ],
      "version": "275.0.0.27.98",
      "price_i18n_countries": [
      ],
      "size": 54039728,
      "iap_max": 999.99,
      "market_update": "2023-03-21T00:00:00+00:00",
      "cat_type": 0,
      "short_desc": "Create & share photos, stories, & reels with friends you love",
      "physical_address": "Facebook, Inc.1601 Willow RdMenlo Park, CA 94025United States",
      "app_availability": {
        "available_in": [
          "DE",
          "HK",
          "TW",
          "PT",
          "DK",
          "LT",
          "LU",
          "HR",
          "LV",
          "UA",
          "HU",
          "MA",
          "DZ",
          "ID",
          "IE",
          "US",
          "EE",
          "EG",
          "IL",
          "AE",
          "IN",
          "ZA",
          "IR",
          "IT",
          "MX",
          "AM",
          "MY",
          "ES",
          "AR",
          "AT",
          "AU",
          "VN",
          "NG",
          "RO",
          "NL",
          "NO",
          "RS",
          "BE",
          "FI",
          "RU",
          "BG",
          "JO",
          "JP",
          "FR",
          "NZ",
          "SA",
          "BR",
          "SE",
          "SG",
          "SI",
          "BY",
          "SK",
          "GB",
          "CA",
          "GE",
          "CH",
          "KR",
          "CL",
          "CN",
          "GR",
          "CO",
          "TH",
          "PE",
          "CY",
          "LB",
          "CZ",
          "PH",
          "TN",
          "PK",
          "PL",
          "TR"
        ],
        "not_available_in": [
        ],
        "availability_unknown": [
        ],
        "package_name": "com.instagram.android"
      },
      "i18n_lang": [
        "el",
        "vi",
        "es",
        "no",
        "fr",
        "fr-ca",
        "de",
        "da",
        "sv",
        "fi",
        "en-gb",
        "ar",
        "id",
        "ru",
        "ko",
        "zh-tw",
        "en",
        "pt-br",
        "zh-cn",
        "ms",
        "it",
        "th",
        "nl",
        "pt-pt",
        "ja",
        "tr",
        "hi",
        "be",
        "bg",
        "lt",
        "hr",
        "lv",
        "hu",
        "uk",
        "sk",
        "sl",
        "sr",
        "et",
        "cs",
        "fa",
        "pl",
        "ro"
      ],
      "description": "Instagram (from Meta) allows you to create and share your photos, stories, reels and videos with the friends and followers you care about. Connect 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\nINSTA reels bring you a new way to create and discover entertaining short videos. You can watch, like, comment, and share reels videos in a dedicated space in the Reels tab.\n\n*Watch & create short clips up to 30 seconds long with INSTA Reels.\nAdd special effects, background music, face filters, emojis, and stickers to bring your reels and stories to life\nUpload your creative video clips and reels to expand your audience \nEnjoy millions of entertaining, funny, and informative videos and reels\nWatch & share any Instagram Reels video with your friends\n\n*Add photos and videos to your INSTA Story that disappear after 24 hours, and bring them to life with fun creative tools.\nStories allow you to easily share moments or posts from your day with text, music, stickers, and GIFs to bring your Stories to life\nShare memes privately with your friends and have conversations\nBoomerangs loop any moment you capture for a fun mini-video while Superzoom lets you add special effects as the camera automatically zooms in\nAdd polls to your Stories to get more interaction with friends and followers\nChoose specific Close Friends who can watch your video clips or make them public\nPin your favorite memories to your profile to keep your Stories alive as Highlights\n\n* Message your friends in Direct\nStart fun conversations with one or more friends about what you see on Feed, Stories, and INSTA Reels.\nVideo chat to connect no matter where you are\nLearn about what's trending from your favorite accounts and share them to friends\nSend messages to your friends, share posts privately, and receive chat notifications\n\n* Post photos, reels and videos to your INSTA Feed\nUpload photos and videos directly from your phone library\nShare content with your followers instantly\nPost photos and videos to your feed that you want to show on your profile\nPost short videos, reels or photo updates from moments in your life\nReceive notifications when someone likes or comments on your post\n\n*Search & Explore to Learn More About Your Interests\n* Follow your favorite bands, celebrities, actors, athletes, and singers for live updates\n* Watch skits, movie scenes, news updates, music performances, sports highlights, and more from your favorite pages\n* Check out IGTV for longer videos from your favorite INSTA creators.\n* Discover brands and connect with local small businesses\n* Shop for products that compliment your personal style.",
      "title": "Instagram",
      "featured_graphic": "https://play-lh.googleusercontent.com/9ASiwrVdio0I2i2Sd1UzRczyL81piJoKfKKBoC8PUm2q6565NMQwUJCuNGwH-enhm00",
      "screenshots": [
        "https://play-lh.googleusercontent.com/h6AeudmoJPlrr7rltwrepU8JOo8ih0lIdAum8wQuFgqzj6AtWEQ0o8cCqjRtzgGqUTI=w526-h296",
        "https://play-lh.googleusercontent.com/o3qvVokoalG62VyO1C8R-_wmteZvJ_1ifrDjOdEhUREgk5f9ASXWrKNV8olOxkGsC-l0=w526-h296",
        "https://play-lh.googleusercontent.com/SrKRTw2TDmmU8LRDzb-xVAo4nTojtPlv3yh-amUh0LGSE8dxPsTd4x-ocSL4q2oTO9k=w526-h296",
        "https://play-lh.googleusercontent.com/cmFFvVXiSUJvH96J4nx4PBzMCDdc1Qpr0IwMUe_2tDxfbmuKSrpXRGeSgeT1mhGqHOY=w526-h296",
        "https://play-lh.googleusercontent.com/YV3RbJleJ6nYiWCFaxHjoWBEyttUTTaON7yHAfhhcVWP3Cdn8uQomHUB5m9_Zdlvjwo=w526-h296"
      ],
      "downloads": "1B+",
      "market_source": "GOOGLE",
      "preregister": false,
      "content_rating": "Teen",
      "iap": true,
      "lang": "en",
      "email": "android-support@instagram.com",
      "what_is_new": "Introducing Voice Messaging\n\nIn any message thread, tap and hold the microphone icon to start recording a voice message. Release your finger to send.",
      "price_numeric": 0,
      "website": "http://help.instagram.com/",
      "downloads_max": 5000000000,
      "cat_key": "SOCIAL",
      "badges": [
        "Editors' Choice"
      ],
      "contains_ads": true,
      "privacy_policy": "http://instagram.com/legal/privacy/",
      "package_name": "com.instagram.android",
      "from_developer": [
      ],
      "category": "Social",
      "developer": "Instagram",
      "number_ratings": 144381135,
      "app_country": "US",
      "icon": "https://play-lh.googleusercontent.com/VRMWkE5p3CkWhJs6nv-9ZsLAs1QOg5ob1_3qg-rckwYW7yp1fMrYZqnEFpk0IoVP4LM=s180",
      "icon_72": "https://play-lh.googleusercontent.com/VRMWkE5p3CkWhJs6nv-9ZsLAs1QOg5ob1_3qg-rckwYW7yp1fMrYZqnEFpk0IoVP4LM=s180-rw",
      "testing": true,
      "market_status": "PUBLISHED",
      "market_url": "https://play.google.com/store/apps/details?id=com.instagram.android&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi",
      "deep_link": "https://play.google.com/store/apps/details?id=com.instagram.android&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi"
    },
    {
      "content_descriptors": [
      ],
      "downloads_min": 5000000000,
      "rating": 3.9731526374816895,
      "cat_keys": [
        "SOCIAL",
        "APPLICATION"
      ],
      "permissions": [
        {
          "id": "android.permission.READ_MEDIA_VIDEO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_MEDIA_IMAGES",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_COARSE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WAKE_LOCK",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.VIBRATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_CONTACTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.AUTHENTICATE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_SYNC_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_SYNC_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_FINE_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_MEDIA_LOCATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BROADCAST_STICKY",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.orca.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.services.identity.FEO2",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.mlite.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.pages.app.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "com.oculus.twilight.provider.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.appmanager.UNPROTECTED_API_ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.DOWNLOAD_WITHOUT_NOTIFICATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.NFC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CAMERA",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.POST_NOTIFICATIONS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECORD_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.permission.prod.FB_APP_COMMUNICATION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PHONE_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_CALENDAR",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_CALENDAR",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MODIFY_AUDIO_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_PROFILE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CHANGE_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CHANGE_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.SYSTEM_ALERT_WINDOW",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.providers.gsf.permission.READ_GSERVICES",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECEIVE_BOOT_COMPLETED",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_TASKS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.permission.CROSS_PROCESS_BROADCAST_MANAGER",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.receiver.permission.ACCESS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FULL_SCREEN_INTENT",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.REORDER_TASKS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.INTERNET",
          "source": "uses_permission"
        },
        {
          "id": "com.android.launcher.permission.INSTALL_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.READ",
          "source": "uses_permission"
        },
        {
          "id": "com.sec.android.provider.badge.permission.WRITE",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.READ_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "com.htc.launcher.permission.UPDATE_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.sonyericsson.home.permission.BROADCAST_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "com.sonymobile.home.permission.PROVIDER_INSERT_BADGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BATTERY_STATS",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.permission.RECEIVE_ADM_MESSAGE",
          "source": "uses_permission"
        },
        {
          "id": "com.amazon.device.messaging.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.FOREGROUND_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "com.nokia.pushnotifications.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.permission.CREATE_SHORTCUT",
          "source": "uses_permission"
        },
        {
          "id": "com.facebook.katana.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_BIOMETRIC",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_FINGERPRINT",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "com.android.vending.BILLING",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.c2dm.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BLUETOOTH",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.BLUETOOTH_ADMIN",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.CALL_PHONE",
          "source": "uses_permission_sdk_23"
        },
        {
          "id": "android.permission.READ_PHONE_NUMBERS",
          "source": "uses_permission_sdk_23"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.katana.provider.ACCESS",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.permission.prod.FB_APP_COMMUNICATION",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.katana.permission.CROSS_PROCESS_BROADCAST_MANAGER",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.receiver.permission.ACCESS",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.katana.permission.RECEIVE_ADM_MESSAGE",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.katana.permission.CREATE_SHORTCUT",
          "source": "permission"
        },
        {
          "protection_level": "signature",
          "id": "com.facebook.katana.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION",
          "source": "permission"
        }
      ],
      "price": "",
      "cat_int": 19,
      "ratings_2": 5419564,
      "iap_min": 0.05,
      "ratings_1": 23651552,
      "similar": [
        "com.facebook.orca",
        "com.facebook.lite",
        "com.whatsapp",
        "com.instagram.android",
        "com.whatsapp.w4b",
        "com.zhiliaoapp.musically"
      ],
      "ratings_4": 10801264,
      "ratings_3": 7506660,
      "ratings_5": 85726900,
      "promo_video": "",
      "created": "2011-12-27T17:48:05+00:00",
      "interactive_elements": [
        "Users Interact",
        "Shares Info",
        "Shares Location",
        "Digital Purchases"
      ],
      "version": "407.0.0.30.97",
      "price_i18n_countries": [
      ],
      "size": 56792653,
      "iap_max": 400,
      "market_update": "2023-03-22T00:00:00+00:00",
      "cat_type": 0,
      "short_desc": "Find friends, watch live videos, play games & save photos in your social network",
      "physical_address": "1 Hacker Way Menlo Park, CA 94025",
      "app_availability": {
        "available_in": [
          "DE",
          "HK",
          "TW",
          "PT",
          "DK",
          "LT",
          "LU",
          "PY",
          "HR",
          "LV",
          "UA",
          "HU",
          "MA",
          "DZ",
          "ID",
          "IE",
          "US",
          "EE",
          "EG",
          "IL",
          "AE",
          "UY",
          "IN",
          "ZA",
          "IT",
          "MX",
          "AM",
          "MY",
          "ES",
          "AR",
          "AT",
          "AU",
          "VN",
          "NG",
          "RO",
          "NL",
          "NO",
          "RS",
          "BE",
          "FI",
          "RU",
          "BG",
          "JO",
          "JP",
          "FR",
          "NZ",
          "SA",
          "BR",
          "SE",
          "SG",
          "SI",
          "BY",
          "SK",
          "GB",
          "CA",
          "GE",
          "CH",
          "KR",
          "CL",
          "GR",
          "CO",
          "TH",
          "PE",
          "CY",
          "LB",
          "CZ",
          "PH",
          "TN",
          "PK",
          "PL",
          "TR"
        ],
        "not_available_in": [
          "IR",
          "CN"
        ],
        "availability_unknown": [
        ],
        "package_name": "com.facebook.katana"
      },
      "i18n_lang": [
        "el",
        "it",
        "ar",
        "es",
        "ru",
        "nl",
        "pt",
        "zh-cn",
        "th",
        "fr",
        "fr-ca",
        "de",
        "ja",
        "ko",
        "en",
        "cs",
        "pt-pt",
        "pl",
        "da",
        "no",
        "sk",
        "id",
        "sv",
        "pt-br",
        "ms",
        "vi",
        "tr",
        "hi",
        "zh-tw",
        "en-gb"
      ],
      "description": "Keeping up with friends is faster and easier than ever. Share updates and photos, engage with friends and Pages, and stay connected to communities important to you. \n\nFeatures on the Facebook app include:\n\n* Connect with friends and family and meet new people on your social media network\n* Set status updates & use Facebook emoji to help relay what’s going on in your world\n* Share photos, videos, and your favorite memories.\n* Get notifications when friends like and comment on your posts\n* Find local social events, and make plans to meet up with friends\n* Play games with any of your Facebook friends\n* Backup photos by saving them in albums\n* Follow your favorite artists, websites, and companies to get their latest news\n* Look up local businesses to see reviews, operation hours, and pictures\n* Buy and sell locally on Facebook Marketplace\n* Watch live videos on the go\n\n\nThe Facebook app does more than help you stay connected with your friends and interests. It's also your personal organizer for storing, saving and sharing photos. It's easy to share photos straight from your Android camera, and you have full control over your photos and privacy settings. You can choose when to keep individual photos private or even set up a secret photo album to control who sees it.\n\nFacebook also helps you keep up with the latest news and current events around the world. Subscribe to your favorite celebrities, brands, news sources, artists, or sports teams to follow their newsfeeds, watch live streaming videos and be caught up on the latest happenings no matter where you are!\n\nThe most important desktop features of Facebook are also available on the app, such as writing on timelines, liking photos, browsing for people, and editing your profile and groups. \n\nNow you can get early access to the next version of Facebook for Android by becoming a beta tester. Learn how to sign up, give feedback and leave the program in our Help Center: http://on.fb.me/133NwuP \n\nSign up directly here: \nhttp://play.google.com/apps/testing/com.facebook.katana\n\nProblems downloading or installing the app? See http://bit.ly/GPDownload1\nStill need help? Please tell us more about the issue. http://bit.ly/invalidpackage\n\nFacebook is only available for users age 13 and over.\nTerms of Service: http://m.facebook.com/terms.php.",
      "title": "Facebook",
      "screenshots": [
        "https://play-lh.googleusercontent.com/VGS00uSW8Mp96Syfhgd3JMMPsvytbkPN_bQeC7342TSnOmT431fpKD48n3QikB3mk79c=w526-h296",
        "https://play-lh.googleusercontent.com/bmKp_AZS6nLJN-XpJrEdi7KR_3jVcA6SctdWvV9QmMhzAnmJzU-NE5rvWvZIvVBakh0n=w526-h296",
        "https://play-lh.googleusercontent.com/h2GMIcohA4LKqbdr1KLtwHcbdXDT_bDiW59uSv9aV-EonyAsVE-_cfnHMatrgoUkdKs=w526-h296",
        "https://play-lh.googleusercontent.com/UbMZ215Qr3QmarnC4H1AXVNXTsNLlRMaXvaaNnpXVnMvUDaaxbQr9Lw5CK53upY4JQ=w526-h296"
      ],
      "downloads": "5B+",
      "market_source": "GOOGLE",
      "preregister": false,
      "content_rating": "Teen",
      "iap": true,
      "lang": "en",
      "email": "facebook.android@fb.com",
      "what_is_new": "• Improvements for reliability and speed",
      "price_numeric": 0,
      "website": "https://www.facebook.com/facebook",
      "downloads_max": 10000000000,
      "cat_key": "SOCIAL",
      "badges": [
      ],
      "contains_ads": true,
      "privacy_policy": "https://www.facebook.com/about/privacy/",
      "package_name": "com.facebook.katana",
      "from_developer": [
        "com.facebook.talk",
        "com.facebook.pages.app",
        "com.facebook.adsmanager",
        "com.facebook.work",
        "com.facebook.creatorstudio",
        "com.facebook.workchat"
      ],
      "category": "Social",
      "developer": "Meta Platforms, Inc.",
      "number_ratings": 133105942,
      "app_country": "US",
      "icon": "https://play-lh.googleusercontent.com/ccWDU4A7fX1R24v-vvT480ySh26AYp97g1VrIB_FIdjRcuQB2JP2WdY7h_wVVAeSpg=s180",
      "icon_72": "https://play-lh.googleusercontent.com/ccWDU4A7fX1R24v-vvT480ySh26AYp97g1VrIB_FIdjRcuQB2JP2WdY7h_wVVAeSpg=s180-rw",
      "min_sdk": "Varies with device",
      "testing": true,
      "market_status": "PUBLISHED",
      "market_url": "https://play.google.com/store/apps/details?id=com.facebook.katana&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi",
      "deep_link": "https://play.google.com/store/apps/details?id=com.facebook.katana&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi"
    },
    {
      "content_descriptors": [
        "Blood",
        "Violence"
      ],
      "downloads_min": 1000000000,
      "rating": 4.194737911224365,
      "cat_keys": [
        "GAME_ACTION",
        "GAME"
      ],
      "permissions": [
        {
          "id": "android.permission.RECEIVE_BOOT_COMPLETED",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.INTERNET",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.CHANGE_NETWORK_STATE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.ACCESS_WIFI_STATE",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.gms.permission.AD_ID",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WAKE_LOCK",
          "source": "uses_permission"
        },
        {
          "id": "com.dts.freefireth.permission.C2D_MESSAGE",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.c2dm.permission.RECEIVE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.WRITE_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.READ_EXTERNAL_STORAGE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BLUETOOTH_CONNECT",
          "source": "uses_permission"
        },
        {
          "id": "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "com.seagroup.spark.sdk",
          "source": "uses_permission"
        },
        {
          "id": "com.android.vending.BILLING",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.FOREGROUND_SERVICE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.GET_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.AUTHENTICATE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MANAGE_ACCOUNTS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.USE_CREDENTIALS",
          "source": "uses_permission"
        },
        {
          "id": "com.android.vending.CHECK_LICENSE",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.RECORD_AUDIO",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.MODIFY_AUDIO_SETTINGS",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.BLUETOOTH",
          "source": "uses_permission"
        },
        {
          "id": "android.permission.VIBRATE",
          "source": "uses_permission"
        },
        {
          "protection_level": "signature",
          "id": "com.dts.freefireth.permission.C2D_MESSAGE",
          "source": "permission"
        }
      ],
      "price": "",
      "cat_int": 32,
      "ratings_2": 3106085,
      "iap_min": 0.99,
      "ratings_1": 16593172,
      "similar": [
        "com.tencent.ig",
        "com.activision.callofduty.shooter",
        "com.mobile.legends",
        "com.roblox.client",
        "com.kitkagames.fallbuddies",
        "com.ohbibi.fps"
      ],
      "ratings_4": 6994641,
      "ratings_3": 4402233,
      "ratings_5": 82519123,
      "promo_video": "https://play.google.com/video/lava/web/player/yt:movie:TAFndSPAV0o?autoplay=1&embed=play",
      "created": "2017-12-07T00:00:00+00:00",
      "interactive_elements": [
        "Users Interact",
        "In-Game Purchases (Includes Random Items)"
      ],
      "version": "1.97.1",
      "size": 400591971,
      "iap_max": 199.99,
      "market_update": "2023-03-17T00:00:00+00:00",
      "cat_type": 1,
      "short_desc": "10-minute Survival Shooter!",
      "physical_address": "1 FUSIONOPOLIS PLACE, 17-10, GALAXIS, Singapore",
      "app_availability": {
        "available_in": [
          "DE",
          "HK",
          "TW",
          "PT",
          "DK",
          "LT",
          "LU",
          "HR",
          "LV",
          "UA",
          "HU",
          "MA",
          "DZ",
          "ID",
          "IE",
          "US",
          "EE",
          "EG",
          "IL",
          "AE",
          "ZA",
          "IT",
          "MX",
          "AM",
          "MY",
          "ES",
          "AR",
          "AT",
          "AU",
          "VN",
          "NG",
          "RO",
          "NL",
          "NO",
          "RS",
          "BE",
          "FI",
          "RU",
          "BG",
          "JO",
          "JP",
          "FR",
          "NZ",
          "SA",
          "BR",
          "SE",
          "SG",
          "SI",
          "BY",
          "SK",
          "GB",
          "CA",
          "GE",
          "CH",
          "KR",
          "CL",
          "GR",
          "CO",
          "TH",
          "PE",
          "CY",
          "LB",
          "CZ",
          "PH",
          "TN",
          "PK",
          "PL",
          "TR"
        ],
        "not_available_in": [
          "IN",
          "IR",
          "CN"
        ],
        "availability_unknown": [
        ],
        "package_name": "com.dts.freefireth"
      },
      "i18n_lang": [
        "th",
        "en",
        "ru",
        "pt-br",
        "en-gb",
        "es",
        "zh-tw",
        "pt-pt",
        "vi",
        "id",
        "tr",
        "ar",
        "ms",
        "fr",
        "fr-ca",
        "hi",
        "no",
        "fi",
        "be",
        "bg",
        "lt",
        "hr",
        "lv",
        "hu",
        "zh-cn",
        "uk",
        "sk",
        "sl",
        "sr",
        "sv",
        "el",
        "it",
        "et",
        "cs",
        "ja",
        "fa",
        "pl",
        "da",
        "ro",
        "nl"
      ],
      "description": "Free Fire, the world-famous survival shooter game available on mobile. Each 10-minute game places you on a remote island where you are pit against 49 other players, all seeking survival. Players freely choose their starting point with their parachute, and aim to stay in the safe zone for as long as possible. Drive vehicles to explore the vast map, hide in the wild, or become invisible by proning under grass or rifts. Ambush, snipe, survive, there is only one goal: to survive and answer the call of duty.\n\nFree Fire, Battle In Style!\n\n[Survival shooter in its original form]\nSearch for weapons, stay in the play zone, loot your enemies and become the last man standing. Along the way, go for legendary airdrops while avoiding airstrikes to gain that little edge against other players.\n\n[10 minutes, 50 players, epic survival goodness awaits]\nFast and Lite gameplay - Within 10 minutes, a new survivor will emerge. Will you go beyond the call of duty and be the one under the shining lite?\n\n[4-man squad, with in-game voice chat]\nCreate squads of up to 4 players and establish communication with your squad at the very first moment. Answer the call of duty and lead your friends to victory and be the last team standing at the apex.\n\n[Clash Squad]\nFast paced 4v4 game mode is now open 24/7! Manage your economy, purchase weapons, and defeat the enemy squad!\n\n[Realistic and smooth graphics]\nEasy to use controls and smooth graphics promises the optimum survival experience you will find on mobile to help you immortalize your name among the legends. \n\n[Contact us]\nCustomer Service: https://ffsupport.garena.com/hc/en-us",
      "title": "Free Fire",
      "featured_graphic": "https://play-lh.googleusercontent.com/grIC3QrDvYoLmwAr_d4uTAAdpIr1oNw6xnK7JdxTm6NM8zkKL5lnTKUJtywJ2TA-Y89E",
      "screenshots": [
        "https://play-lh.googleusercontent.com/IydcxLzGcPGe9moYjWIV6_FZ5j_D8Ru32ZQoxAVQI9ofE4ulp9Jt1_fpYlVWfB4Xn18=w526-h296",
        "https://play-lh.googleusercontent.com/-Ifiy0jH5CfRdhw9aj-DTzercb-KlxT2NW4aJrAqSHaSXZjSmCUOSJanQbItAROEir4=w526-h296",
        "https://play-lh.googleusercontent.com/pbuxSsbPalzKHsxYGN2FlVbq115liOh0h6TXJLSdJF53GqNrkEelU1ITt6xg-Gv6SQs=w526-h296",
        "https://play-lh.googleusercontent.com/DBXiKANrK52kIS1NkTiZMezVqVOO30jEw76b2pdD_JJfUbhTsAhQOx44R0Jo-_RGcOA=w526-h296",
        "https://play-lh.googleusercontent.com/QfnhCY8VcBXDn7-oyhLgm42bZMqUR7tVffIL69KG4o74QNQa7nLSnC4bQbVoNxoQpBI=w526-h296",
        "https://play-lh.googleusercontent.com/9ZnhI60gs8jy6UMd0r3IHWJlRPLqhmEcICYxJfXdxnv6GkET4lT0VQMNj9MvuVyeUgU=w526-h296",
        "https://play-lh.googleusercontent.com/QBfxHGj8QbFQrI39yrKpNpq9KHNfnR84SL-DWtt15zJd7fCA6Cuxjuo7YW4p_WpYk_k=w526-h296",
        "https://play-lh.googleusercontent.com/zRMIorMaJoa0NyjIDE5q_ik1hW-PMwUNqGo9DWSKWMieE6Qu9MfwqbkTKSUUAu1ksQ=w526-h296",
        "https://play-lh.googleusercontent.com/qkpOjR02w5Xcv0bUuKmBLXD2i8hs2wFpY3t3yyPih7aRKVUfwvbjr78sQ8PoHEjP7w=w526-h296",
        "https://play-lh.googleusercontent.com/nofNNzbcFxCbX3fWRbrRIwl00wXoMJT6Ea5XLNyWADSMBev54dokWwimWBTuhLBI4A=w526-h296",
        "https://play-lh.googleusercontent.com/x15YmmR9w8oBYLi60GeHyxZ9efxmh2522iHMJuXfnfasoYYN08qrTBHajpwyRnKacZs=w526-h296",
        "https://play-lh.googleusercontent.com/AAsu2EkVHn4SQr8Dz9kveJjM8UNwCjPgBuoIrKhON7s6sTbUzLPBXFh9ge5S4nfxsg=w526-h296",
        "https://play-lh.googleusercontent.com/fb0QE7PBKw0D89n5Mg36eC3mqby_COd_vgzm7vXsD98ajiies2LbOg_bIgcC6WGc-RM=w526-h296",
        "https://play-lh.googleusercontent.com/lvr_4hoH_0EpNQEOV2aTfiZgcTWPoDXVPwAz6x7gH9zUok0CqjaJfzWme8dMt9lUbA=w526-h296",
        "https://play-lh.googleusercontent.com/CQUBLmZQArUQTuqTwvBiNiWQYV8d62yXAArXnUG4r52wDYc3UalM4b9cH5HofjTGedg=w526-h296",
        "https://play-lh.googleusercontent.com/pA6uErmNcFk3yC4-sJ8gukASMn-Ako8WvfaZCU5OOC7NaifrTFtr71XkraaClvWZAQ=w526-h296",
        "https://play-lh.googleusercontent.com/cFRMpaR24GV41PJlV9epowOXZBml11T6E9tR3mBh_5YEwPXWyqR9uJ2ahHHFDH-WF7g=w526-h296",
        "https://play-lh.googleusercontent.com/3Cm0O1Krwc8TTevxqQwd1jFdFYpLY_ZkNv8d3Orn8t2gLZmfvhk6O7_OHLUbncbmdr0=w526-h296",
        "https://play-lh.googleusercontent.com/tucPlYuRIoU12EQUK7savy-kE6qICvvj5OukSLGcZA4zCNazddw0ZkuuLLRdK6-K5VU=w526-h296",
        "https://play-lh.googleusercontent.com/2iBe-r43qTBY_REMfku48Y4Q2EHGSflvhkIcsjLe2_JaRJqs12MubwXIbg_cS-rgD-ch=w526-h296",
        "https://play-lh.googleusercontent.com/UrdEpdLHudJko3NRjlSlp5qNiqFMw5mZPL0v8aRq7o0NW70E0-x1dYayFlbds97ln70=w526-h296"
      ],
      "downloads": "1B+",
      "market_source": "GOOGLE",
      "preregister": false,
      "content_rating": "Mature 17+",
      "iap": true,
      "lang": "en",
      "email": "freefire@garena.com",
      "what_is_new": "1. Character system rework: Purchase characters using Gold and enjoy max. level skills immediately upon unlocking. Optimized skill equipping.\n2. New character: Orion. His active skill prevents from taking damage and absorbs enemy HP.\n3. Character Awakening: Alvaro.\n4. New in Battle Royale: In-game Quests and Super Revival.\n5. Optimized Clash Squad Protection Points. Rank up smoother!\n6. New modes coming soon: Pet Smash and Triple Wolves.\n7. Clash Squad Season 18: Starting March 22, 12:00 GMT+8.",
      "price_numeric": 0,
      "website": "https://ff.garena.com",
      "downloads_max": 5000000000,
      "cat_key": "GAME_ACTION",
      "badges": [
        "Editors' Choice"
      ],
      "contains_ads": false,
      "privacy_policy": "https://ff.garena.com/others/policy/en/",
      "package_name": "com.dts.freefireth",
      "from_developer": [
      ],
      "category": "Action",
      "developer": "Garena International I",
      "number_ratings": 113615257,
      "app_country": "US",
      "icon": "https://play-lh.googleusercontent.com/WWcssdzTZvx7Fc84lfMpVuyMXg83_PwrfpgSBd0IID_IuupsYVYJ34S9R2_5x57gHQ=s180",
      "icon_72": "https://play-lh.googleusercontent.com/WWcssdzTZvx7Fc84lfMpVuyMXg83_PwrfpgSBd0IID_IuupsYVYJ34S9R2_5x57gHQ=s180-rw",
      "min_sdk": "4.1 and up",
      "testing": "",
      "market_status": "PUBLISHED",
      "market_url": "https://play.google.com/store/apps/details?id=com.dts.freefireth&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi",
      "deep_link": "https://play.google.com/store/apps/details?id=com.dts.freefireth&referrer=utm_source%3D42matters.com%26utm_medium%3Dapi"
    }
  ],
  "number_results": 3765899,
  "has_next": true,
  "page": 1,
  "num_pages": 376590,
  "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!