# Samsung Galaxy Store app metadata scraper example

**Use case:** 

Extract localized Samsung Galaxy Store titles, descriptions, icons, developer links, deep links, and package IDs for known apps.

## Input

```json
{
  "packageIds": [
    "com.samsung.android.app.spage",
    "com.samsung.android.game.gamehome"
  ],
  "startUrls": [],
  "languageCode": "en_US",
  "countryCode": "USA",
  "fallbackToDefaultLocale": true,
  "debug": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "packageId": {
    "label": "Package ID",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "isAvailableInRequestedLocale": {
    "label": "Requested locale available",
    "format": "boolean"
  },
  "requestedLocale": {
    "label": "Requested locale",
    "format": "text"
  },
  "resolvedLocale": {
    "label": "Resolved locale",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "developerUrl": {
    "label": "Developer",
    "format": "link"
  },
  "iconUrl": {
    "label": "Icon",
    "format": "image"
  },
  "canonicalUrl": {
    "label": "Galaxy Store page",
    "format": "link"
  },
  "androidDeepLink": {
    "label": "Android deep link",
    "format": "link"
  },
  "localeAlternates": {
    "label": "Locale alternates",
    "format": "array"
  },
  "storeId": {
    "label": "Store ID",
    "format": "text"
  },
  "requestedLanguageCode": {
    "label": "Language",
    "format": "text"
  },
  "requestedCountryCode": {
    "label": "Country",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "fetchedUrl": {
    "label": "Fetched URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Samsung Galaxy Store Apps Scraper](https://apify.com/automation-lab/samsung-galaxy-store-apps-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/samsung-galaxy-store-apps-scraper) to learn more, explore other use cases, and run it yourself.